random numpy code example
Example 1: random array numpy
>>> np.random.rand(3,2)
array([[ 0.14022471, 0.96360618],
[ 0.37601032, 0.25528411],
[ 0.49313049, 0.94909878]])
>>> np.random.random_integers(low=0, high=9, size=(3,2))
array([[2, 3],
[2, 3],
[6, 3]])
Example 2: numpy randint
>>> np.random.randint(2, size=10)
array([1, 0, 0, 0, 1, 1, 0, 0, 1, 0]) # random
>>> np.random.randint(1, size=10)
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0])
Example 3: Random Numbers in NumPy
from numpy import random
x = random.randint(100)
print(x)
Example 4: numpy random in python
import numpy as np
a=np.random.rand(5,2)
print(a)