five random numbers python code example
Example 1: how to tell python to create a random numer
#to choose a random number simply do this
import random
print(random.randint(1, 100))
Example 2: n random numbers python
>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]