+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)

Related questions

+1 vote
asked Jul 8, 2021 in NumPy by rajeshsharma
+2 votes
asked Jul 9, 2021 in NumPy by rajeshsharma
...