import random
random.randint(1, 1000) #inclucive
from random import randint
print(randint(1, 10))
# prints a random integer from 1 to 10
from random import randint
print(randint(1, 10))
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)
import random
print("Generating 3 random integer number between 100 and 999 divisible by 5")
for num in range(3):
print(random.randrange(100, 999, 5), end=', ')
import random
random.randint(1, 1000) #inclusive
random.randint(0, 100)
##This would make the random number be from 0 to 100