Advertisement
here2share

# random_sample.py

Apr 7th, 2022
959
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. # random_sample.py
  2.  
  3. import random
  4. t = random.sample(range(255), 3)
  5. print (t)
  6.  
  7. # *** [210,16,167]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement