Random Values



import random
random.seed(42)
random.random()
random.randrange(1, 7)
random.choice(values)
random.sample(values)