+2 votes
in NumPy by
How to Print Range Between 1 To 100 and show 4 integers random numbers

1 Answer

0 votes
by
rand_arr3 = np.random.randint(1,100,20)

print(‘\n random number from 1 to 100 ‘,rand_arr3)
...