Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from random import choice
- Wylosowane = set()
- while len(Wylosowane) < 6:
- Wylosowane.add(choice(range(1, 50)))
- for i in range(6):
- x = min(Wylosowane)
- Wylosowane.discard(x)
- print x,
Advertisement
Add Comment
Please, Sign In to add comment