Answers for "python get unique nuber"

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
11

python list with only unique values

my_list = list(set(my_list))
Posted by: Guest on May-05-2020

Python Answers by Framework

Browse Popular Code Answers by Language