Advertisement
here2share

# random_pick_5_items.py

Sep 8th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. # random_pick_5_items.py
  2.  
  3. import random
  4. for i in '!'*12:
  5.     print random.sample((1, 2, 3, 4, 5, 6, 7, 8 ,9), 3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement