-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJogo_Adivinhação.py
36 lines (30 loc) · 935 Bytes
/
Jogo_Adivinhação.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
from time import sleep
import random
import os
numero_secreto = random.randint(0, 10)
tentativas = 0
print('-' * 20)
print('JOGO DA ADIVINHAÇÃO')
print('-' * 20)
sleep(1.0)
while True:
tentativas += 1
try:
resposta = input('Digite um valor entre 0 à 10: ')
resposta = int(resposta)
sleep(1)
if resposta == numero_secreto:
os.system('cls')
print('Parabéns. Você acertou!!')
print(f'O número secreto era: {numero_secreto}')
print(f'Número de tentativas: {tentativas}')
break
if resposta > numero_secreto:
print(f'Tente colocar um número menor que {resposta}')
continue
if resposta < numero_secreto:
print(f'Tente colocar um número maior que {resposta}')
continue
except ValueError:
print('Digite apenas números entre 0 e 10')
continue