Answers for "python random distinct numbers"

3

n unique random numbers in python

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

Python Answers by Framework

Browse Popular Code Answers by Language