-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrock_paper_scissors.py
60 lines (56 loc) · 1.16 KB
/
rock_paper_scissors.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
56
57
58
59
import random
import os
rock = '''
_______
---' ____)
(_____)
(_____)
(____)
---.__(___)
'''
paper = '''
_______
---' ____)____
______)
_______)
_______)
---.__________)
'''
scissors = '''
_______
---' ____)____
______)
__________)
(____)
---.__(___)
'''
image = [rock, paper, scissors]
a = int(input("What do you choose? Type 0 for Rock, 1 for Paper or 2 for Scissors\n"))
if a>=3 or a<0:
print("You inputed an invalid number : you lose!")
else:
print(image[a])
b = random.randint(0, 2)
print("The computer chose:")
print(image[b])
if a == b:
print("Draw")
os.system("pause")
elif a == 0 and b == 1:
print("You lose")
os.system("pause")
elif a == 0 and b == 2:
print("You win")
os.system("pause")
elif a == 1 and b == 0:
print("You win")
os.system("pause")
elif a == 1 and b == 2:
print("You lose")
os.system("pause")
elif a == 2 and b == 0:
print("You lose")
os.system("pause")
elif a == 2 and b == 1:
print("You win")
os.system("pause")