from numpy import random
x = random.randint(100, size=(3, 5))
print(x)
[[90 99 11 30 34] [66 40 63 36 37] [63 35 89 51 58]]