Answers for "python ramdom int"

5

python random

from random import randint # Import randint from random
print(randint(1,20)) # Gets random number from first parameter to the second
Posted by: Guest on October-07-2020
7

python randint

from random import randint

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

Python Answers by Framework

Browse Popular Code Answers by Language