-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex.068.py
55 lines (49 loc) · 1.3 KB
/
ex.068.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
from random import randint
vitoria = 0
while True:
jogador = int(input('Diga um valor: '))
pc = randint(0,11)
total = jogador + pc
tipo = ' '
while tipo not in 'PI': #validação de dado
tipo = str(input('PAr ou ímpar? [P/I] ')).strip().upper()[0]
print(f'Você jogou {jogador} e o computador {pc}. Total de {total}')
if tipo == 'P':
if total % 2 == 0:
print('Você VENCEU!')
vitoria += 1
else:
print('Você PERDEU!')
break
elif tipo == 'I':
if total % 2 == 1:
print('Você VENCEU!')
vitoria +=1
else:
print('Você PERDEU!')
break
print('Vamos jogar novamente...')
print(f'GAME OVER! Você venceu {vitoria} vezes.')
'''from random import randint
print('=-'*20)
print('VAMOS JOGAR PAR OU ÍMPAR')
print('=-'*20)
escolha = ''
aux = ''
while True:
pc = randint(1,9)
eu = int(input('Diga um valor: '))
escolha = str(input('PAR OU ÍMPAR? [P/I]')).strip().upper()
soma = pc + eu
print(f'Você jogou {eu} e computador {pc}. Total de {soma},')
if soma % 2 == 0:
aux = 'P'
else:
aux = 'I'
if escolha == aux:
print('venceu')
break
else:
print('Perdeu')
print(escolha)
print(aux)'''