-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
40 lines (26 loc) · 905 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import random
print("********************************")
print("BEM VINOD AO JOGO DE ADIVINHAÇÃO")
print("********************************")
numero_secreto = random.randrange(1, 101)
total_de_tentativas = 5
rodada = 1
print(numero_secreto)
while (rodada <= total_de_tentativas):
chute_str = input("Digite um número entre 1 e 100: ")
print("Tentativa {} de {}".format(rodada, total_de_tentativas))
print("Você digitou ", chute_str)
chute = int(chute_str)
acertou = chute == numero_secreto
maior = chute > numero_secreto
menor = chute < numero_secreto
if (acertou):
print("Parabéns! Você acertou!")
break
else:
if (maior):
print("O seu chute foi maior do que o número secreto!")
elif (menor):
print("O seu chute foi menor do que o número secreto!")
rodada = rodada + 1
print("FIM DO JOGO")