python rand int code example
Example 1: random int python
import random
random.randint(1, 1000) #inclucive
Example 2: python random
# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))
Example 3: 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 4: python randint
from random import randint
print(randint(3, 9))
Example 5: python random
import random
print(random.randint(0,1))
Example 6: 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)