Guest User

Untitled

a guest
Feb 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import random
  2.  
  3. sorteio = set()
  4.  
  5. def gerar_mega():
  6. while len(sorteio) <= 5:
  7. d = random.randint(1, 60)
  8. sorteio.add(d)
  9. print(sorted(sorteio))
  10.  
  11. gerar_mega()
Add Comment
Please, Sign In to add comment