+2 votes
in NumPy by
How to Print Range Between random number 2 row and 3 cols integers random numbers

1 Answer

0 votes
by
To Print Range Between random number 2 row and 3 cols integers random numbers

rand_arr2 = np.random.randint([2,3])

print(‘\n random number 2 row and 3 cols ‘,rand_arr2)
...