Answers for "five random numbers python"

3

n random numbers python

>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]
Posted by: Guest on October-27-2020
2

how to tell python to create a random numer

#to choose a random number simply do this
import random
print(random.randint(1, 100))
Posted by: Guest on July-22-2020

Code answers related to "five random numbers python"

Python Answers by Framework

Browse Popular Code Answers by Language