Created
October 26, 2017 14:51
-
-
Save arferreira/c9cb21f8e29b9eb114d31adc075a74c9 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 verify(kick, number_secret): | |
if kick == number_secret: | |
print("Parabéns!!! Você acertou!") | |
return True | |
else: | |
print("Humm.. Você errou!") | |
larger = number_secret > kick | |
if larger: | |
print("O número secreto é maior!") | |
else: | |
print("O número secreto é menor!") | |
return False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment