-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex068.py
32 lines (31 loc) · 1.18 KB
/
ex068.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
#jogo de par ou impar
from random import randint
print('PAR OU ÍMPAR')
print(12 * '-=')
while True:
pc = randint(1, 10)
n = int(input('Escolha um número: '))
pi = str(input('Você quer par ou ímpar? [P/I]: ')).strip().upper()
soma = n + pc
if pi not in 'PI':
print('Valor Invalido')
pi = str(input('Você quer par ou ímpar? [P/I]: ')).strip().upper()
if pi == 'P' and soma % 2 == 0:
print(f'Você jogou {n} e o computador {pc}. A soma deu {soma} que é PAR.')
print('PARABÉNS. VOCÊ VENCEU!')
print('Vamos jogar novamente...')
print(12 * '-=')
if pi == 'I' and soma % 2 != 0:
print(f'Você jogou {n} e o computador {pc}. A soma deu {soma} que é ÍMPAR.')
print('PARABÉNS. VOCÊ VENCEU!')
print('Vamos jogar novamente...')
print(12 * '-=')
if pi == 'P' and soma % 2 != 0 :
print(f'Você jogou {n} e o computador {pc}. A soma deu {soma} que é ÍMPAR')
print('Você perdeu...')
break
if pi == 'I' and soma % 2 == 0:
print(f'Você jogou {n} e o computador {pc}. A soma deu {soma} que é PAR')
print('Você perdeu...')
break
print('FIM')