générer 12 nombres aléatoires Python

#Array containing 12 random integers from 0 to 100
data = np.random.randint(100,size=(12))
print(data)
M.U