# choose seed for reproducability
np.random.seed(123)

# create random float
np.random.rand()

# create random int of dice (between 1 and 6)
np.random.randint(1, 7)