Answers for "random and randint in python"

12

random int python

import random

random.randint(1, 1000) #inclucive
Posted by: Guest on March-06-2021
87

python random

# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))
Posted by: Guest on December-23-2019
7

python randint

from random import randint

print(randint(3, 9))
Posted by: Guest on January-16-2020
1

random.randint

import random

print(random.randint(3, 9))
Posted by: Guest on September-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language