Skip to content

Instantly share code, notes, and snippets.

@Titowisk
Created February 7, 2018 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Titowisk/41147c6c3378b1dad926f1307fbd503c to your computer and use it in GitHub Desktop.
Save Titowisk/41147c6c3378b1dad926f1307fbd503c to your computer and use it in GitHub Desktop.
import random
sorteio = set()
def gerar_mega():
while len(sorteio) <= 5:
d = random.randint(1, 60)
sorteio.add(d)
print(sorted(sorteio))
gerar_mega()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment