Last active
December 18, 2020 01:06
-
-
Save Shurastei/be71fc1d763e67da0bfcef0553a8a261 to your computer and use it in GitHub Desktop.
Jogo da Advinhação
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
import random | |
def main(): | |
# Iniciando | |
acima = 0 | |
abaixo = 0 | |
certo = 0 | |
number = random.randint(1, 100) | |
while certo == 0: | |
# input | |
userNum = int(input("Digite um número entre 1 e 100: ")) | |
# if/else check | |
if userNum > number: | |
message = "Muito acima, tente novamente." | |
acima += 1 | |
elif userNum == number: | |
message = "Você acertou! Parabéns!" | |
certo += 1 | |
else: | |
message = "Muito abaixo, tente novamente." | |
abaixo += 1 | |
print() | |
print(message) | |
# loop | |
# mensagem ! = "Você acertou! Parabéns!": | |
# mostrar o total de tentativas até o final do jogo | |
print() | |
print("Tentativas com valores acima: ", acima) | |
print("Tentativas com valores abaixo: ", abaixo) | |
print("Total de tentativas: ", (acima + abaixo + certo)) | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment