# random_sample.py import random t = random.sample(range(255), 3) print (t) # *** [210,16,167]