multirow np rand randint

Solutions on MaxInterview for multirow np rand randint by the best coders in the world

showing results for - "multirow np rand randint"
Marie
29 Jun 2016
1np.random.randint(0,10, size=(5, 5)) # random integers from 0 to 10 in size 5,5
2#o/p 
3array([[3, 9, 2, 3, 5],
4       [2, 8, 7, 7, 1],
5       [8, 2, 1, 1, 9],
6       [9, 0, 5, 6, 4],
7       [1, 6, 6, 4, 6]])