-
Notifications
You must be signed in to change notification settings - Fork 0
/
adivinhacao.py
59 lines (44 loc) · 1.79 KB
/
adivinhacao.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import random
def jogar():
print("***********************************")
print("*Bem vindo ao jogo de Adivinhação!*")
print("***********************************")
numero_secreto = round(random.randrange(1, 101))
total_de_tentativas = 0
pontos = 1000
print("Qual o nível de dificuldade deseja?")
print("(1) Fácil (2) Médio (3) Difícil")
nivel = int(input("Defina o nível do seu jogo: "))
if (nivel == 1):
total_de_tentativas = 20
elif (nivel == 2):
total_de_tentativas = 10
else:
total_de_tentativas = 5
for rodada in range(1, total_de_tentativas + 1):
print("Tentativa {} de {}".format(rodada, total_de_tentativas))
chute = int(input("Digite um número entre 1 e 100: "))
print("Você digitou: ", chute)
if (chute < 1 or chute > 100):
print("Você deve digitar um número entre 1 e 100!")
continue
acertou = chute == numero_secreto
maior = chute > numero_secreto
menor = chute < numero_secreto
if (acertou):
print("Parabéns! Você acertou e fez {} pontos!".format(pontos))
break
else:
if (maior):
print("Você errou! O seu chute foi maior que o número secreto."
)
elif (menor):
print("Você errou! Seu chute foi menor que o número secreto.")
if (rodada == total_de_tentativas):
print("O número secreto era {}. Você fez {} pontos!".format(
numero_secreto, pontos))
pontos_perdidos = abs(numero_secreto - chute)
pontos = pontos - pontos_perdidos
print("Fim do jogo!")
if (__name__ == "__main__"):
jogar()