rand.int help 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: python randint
from random import randint
print(randint(3, 9))