EdDoc: home/built-in_modules/random/random.randint
A function available after importing the built-in random module.
Produces a random integer.
This function requires two integers:
randint(a, b)
a randomly chosen integer.
This function returns an integer from with a value from a to b inclusive:
>>> random.randint(3,7) 7 >>> random.randint(3,7) 6 >>> random.randint(3,7) 6
etc.