-
-
Save santagada/5151807 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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