from numpy import random
x = random.randint(100, size=(3, 5))
print(x)
[[80 54 19 74 65] [26 60 69 34 25] [50 16 53 84 90]]