Skip to content

Instantly share code, notes, and snippets.

@santagada
Forked from MrcFoz/gist:5131756
Last active December 14, 2015 21:29
Show Gist options
  • Save santagada/5151807 to your computer and use it in GitHub Desktop.
Save santagada/5151807 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
def sorteio():
"""
Cria a lista com os resultados oficiais publicados pela Caixa.
"""
sorteados = []
while len(sorteados) < 6:
numero = int(input("Digite o número: "))
if numero > 0 and numero <= 60:
sorteados.append(numero)
print(sorteados)
else:
print("Número fora da faixa, tente outra vez")
print(sorteados)
return sorteados
sorteio()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment