random rand int of any number python code example
Example 1: 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)
Example 2: random int in python 3
from random import randint
print(randint(1, 10))
# prints a random integer from 1 to 10