how to generate n random numbers in a range python code example
Example: n random numbers python
>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]
>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]