Skip to content

Instantly share code, notes, and snippets.

@Shurastei
Last active December 18, 2020 01:06
Show Gist options
  • Save Shurastei/be71fc1d763e67da0bfcef0553a8a261 to your computer and use it in GitHub Desktop.
Save Shurastei/be71fc1d763e67da0bfcef0553a8a261 to your computer and use it in GitHub Desktop.
Jogo da Advinhação
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