roll a random number between python code example
Example 1: how to tell python to create a random numer
#to choose a random number simply do this
import random
print(random.randint(1, 100))
Example 2: random python between 0 and 1
import random
random.random() # Gives you a number between 0 and 1