Created
October 26, 2017 14:44
-
-
Save arferreira/978bc40311016f6895420536355e62c5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def get_number(kicks, attempt, limit): | |
print("\n\n\n") | |
print("Tentativa {} de {}.".format(attempt, limit)) | |
print("Chutes atá agora: {}".format(kicks)) | |
kick = int(input("Escolha um número: ")) | |
print("Será que você acertou?? Você escolheu o número: {}".format(kick)) | |
return kick |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment