aléatoire int python
from random import randint
print(randint(1, 10))
MunchDuster
from random import randint
print(randint(1, 10))
import random
random.randint(1, 1000) #inclusive
random.randint(0, 100)
##This would make the random number be from 0 to 100
import random, string
number = ''.join(random.SystemRandom().choice(string.ascii_uppercase + string.digits) for _ in range(N)) ## "N" is the length of the text
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=', ')