-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path47_jokenpô.py
More file actions
70 lines (65 loc) · 1.47 KB
/
47_jokenpô.py
File metadata and controls
70 lines (65 loc) · 1.47 KB
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
60
61
62
63
64
65
66
67
68
69
70
import random
from time import sleep
lista = ["papel", "pedra", "tesoura"]
pc = random.choice(lista).lower()
print("pc escolheu {}".format(pc))
print("""
Qual opção:
[PAPEL]
[PEDRA]
[TESOURA]""")
opcao = str(input("Qual sua opção: ")).strip().lower()
print("Você escolheu {}".format(opcao))
print("JO")
sleep(1)
print("KEN")
sleep(1)
print("PO")
if opcao == "papel":
if pc == "papel":
print("""
Você: {}
PC: {}
EMPATE""".format(opcao, pc))
elif pc == "pedra":
print("""
Você: {}
PC: {}
GANHOU""".format(opcao, pc))
elif pc == "tesoura":
print("""
Você: {}
PC: {}
PERDEU""".format(opcao, pc))
elif opcao == "pedra":
if pc == "pedra":
print("""
Você: {}
PC: {}
EMPATE""".format(opcao, pc))
elif pc == "papel":
print("""
Você: {}
PC: {}
PERDEU""".format(opcao, pc))
elif pc == "tesoura":
print("""
Você: {}
PC: {}
GANHOU""".format(opcao, pc))
elif opcao == "tesoura":
if pc == "tesoura":
print("""
Você: {}
PC: {}
EMPATE""".format(opcao, pc))
elif pc == "papel":
print("""
Você: {}
PC: {}
GANHOU""".format(opcao, pc))
elif pc == "pedra":
print("""
Você: {}
PC: {}
PERDEU""".format(opcao, pc))