-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
58 lines (53 loc) · 2.16 KB
/
main.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
from random import choice
actions = ["rock", "paper", "scissors", "lizard", "spock"]
computer_action = choice(actions)
user_input = str(input("What is your act (rock, paper, scissors, lizard, spock): "))
if (user_input in actions):
user_action = user_input
def check_actions(computer_act, user_act):
computer_points, user_points = 0, 0
if user_act == actions[0]:
if computer_act == actions[0]:
print("Both same.")
elif computer_act == actions[1]:
print("Paper Covers Rock.")
computer_points = computer_points + 1
elif computer_act == actions[2]:
print("Rock crushes Scissors.")
user_points = user_points + 1
elif computer_act == actions[3]:
print("Rock crushes Lizard.")
user_points = user_points + 1
elif computer_act == actions[4]:
print("Spock smashes Scissors.")
computer_points = computer_points + 1
elif user_act == actions[1]:
if computer_act == actions[0]:
print("paper covers rock.")
user_points = user_points + 1
elif computer_act == actions[1]:
print("Both same.")
elif computer_act == actions[2]:
print("Scissors cuts Paper.")
computer_points = computer_points + 1
elif computer_act == actions[3]:
print("Lizard eats Paper")
computer_points = computer_points + 1
elif computer_act == actions[4]:
print("Paper disproves Spock.")
user_points = user_points + 1
elif user_act == actions[2]:
if computer_act == actions[0]:
print("Rock crushes Scissors.")
computer_points = computer_points + 1
elif computer_act == actions[1]:
print("Scissors cuts Paper.")
user_points = user_points + 1
elif computer_act == actions[2]:
print("Both same.")
elif computer_act == actions[3]:
print("Scissors cuts Lizard")
user_points = user_points + 1
elif computer_act == actions[4]:
print("Spock brokes Scissors.")
computer_points = computer_points + 1