-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRockPaperScissors.py
72 lines (60 loc) · 2.01 KB
/
RockPaperScissors.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
60
61
62
63
64
65
66
67
68
69
70
71
72
import random
robot_score = 0
user_score = 0
def Shoot(user_input, robot_input):
global robot_score
global user_score
if user_input == "Rock":
order = 0
if order + robot_input == 1:
print("PC wins!")
robot_score += 1
print(f"Robot: {robot_score} , User: {user_score}")
elif order + robot_input == 2:
print("I win!")
user_score += 1
print(f"Robot: {robot_score} , User: {user_score}")
else:
print("Tie")
print(f"Robot: {robot_score} , User: {user_score}")
elif user_input == "Paper":
order = 0
if order + robot_input == 2:
print("PC wins!")
robot_score += 1
print(f"Robot: {robot_score} , User: {user_score}")
elif order + robot_input == 0:
print("I win!")
user_score += 1
print(f"Robot: {robot_score} , User: {user_score}")
else:
print("Tie")
print(f"Robot: {robot_score} , User: {user_score}")
elif user_input == "Scissor":
order = 0
if order + robot_input == 0:
print("PC wins!")
robot_score += 1
print(f"Robot: {robot_score} , User: {user_score}")
elif order + robot_input == 1:
print("I win!")
user_score += 1
print(f"Robot: {robot_score} , User: {user_score}")
else:
print("Tie")
print(f"Robot: {robot_score} , User: {user_score}")
else:
print("stoopid")
while user_score < 5 and robot_score < 5:
user_move = input("Choose Rock, Paper, or Scissor: ")
random_num = random.randint(0, 2)
moves = ["Rock", "Paper", "Scissor"]
robot_move = moves[random_num]
print(robot_move)
robot_order = random_num
Shoot(user_move, robot_order)
else:
if user_score > robot_score:
print("I AM BETTER!!")
else:
print("RIGGED!!")