1np.random.randint(2, size=10) # Creates binary sample of size 10
2np.random.randint(5, size=10) # Creates sample with 0-4 as values of size 10
3
4np.random.randint(5, size=(2, 4))
1from numpy import random
2n = random.randint(lowerbound(inclusive), higherbound(exclusive))