python random number int code example
Example 1: random numbers python
import random
a = (random.randint(bottom value, top value)
Example 2: random int python
from random import randint
random_integer_between_40_and_50 = randint(40, 50)# 40 is start and 50 is end
print(random_integer_between_40_and_50)