how to make a random number with a variabkle in 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: how to make a random variable in python
import random
value = randint(1,10)
#1 and 10 represent the range for your random value
print(value)