python how does randint work 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: random.randint
import random
print(random.randint(3, 9))