-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex.058.py
34 lines (31 loc) · 883 Bytes
/
ex.058.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
from random import randint
pc = randint(1,10)
print('Sou seu computador e acabei de pensar em número entre 1 e 10. ')
print('Adivinhe qual foi! ')
acertou = False
tentativas = 0
while not acertou:
jogador = int(input('Qual é seu palpite?'))
tentativas += 1
if jogador == pc:
acertou = True
else:
if jogador < pc:
print('Mais... Tente mais uma vez:')
elif jogador > pc:
print('menos... Tente mais uma vez:')
print('Acertou com {} tentativas. Parabéns'.format(tentativas))
''' meu jeito abreviado
from random import randint
pc = randint(1,10)
eu = int(input('Tente adivinhar um número de 1 a 10:'))
tentativas = 0
while eu != pc:
if eu < pc:
eu = int(input('mais:'))
tentativas += 1
if eu > pc:
eu = int(input('menos:'))
tentativas += 1
print('acertou')
print(tentativas)'''