Answers for "python generate list with random numbers"

3

n random numbers python

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

Code answers related to "python generate list with random numbers"

Python Answers by Framework

Browse Popular Code Answers by Language