Answers for "how to use the randint function in python"

7

python randint

from random import randint

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

randint

random.randint(a, b)
Posted by: Guest on May-06-2021
0

randint

print(random.randint(5, 11)) #5 = start   #11 = stop
Posted by: Guest on November-15-2020

Code answers related to "how to use the randint function in python"

Python Answers by Framework

Browse Popular Code Answers by Language