how to use random.randint in python code example
Example 1: python randint
from random import randint
# generate an integer between 3 and 9 (inclusive range).
# (see randrange for exclusive range)
print(randint(3, 9))
Example 2: randint
print(random.randint(5, 11)) #5 = start #11 = stop