-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRPSSL.py
More file actions
105 lines (84 loc) · 2.79 KB
/
RPSSL.py
File metadata and controls
105 lines (84 loc) · 2.79 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Rock-paper-scissors-lizard-Spock template
# The key idea of this program is to equate the strings
# "rock", "paper", "scissors", "lizard", "Spock" to numbers
# as follows:
#
# 0 - rock
# 1 - Spock
# 2 - paper
# 3 - lizard
# 4 - scissors
# helper functions
def name_to_number(name):
# delete the follwing pass statement and fill in your code below
if name == 'rock':
number = 0
return number
elif name == 'Spock':
number = 1
return number
elif name == 'paper':
number = 2
return number
elif name == 'lizard':
number = 3
return number
elif name == 'scissors':
number = 4
return number
else:
print "Error: Enter Valid String"
return None
def number_to_name(number):
# delete the follwing pass statement and fill in your code below
if number == 0:
name = 'rock'
return name
elif number == 1:
name = 'Spock'
return name
elif number == 2:
name = 'paper'
return name
elif number == 3:
name = 'lizard'
return name
elif number == 4:
name = 'scissors'
return name
else:
print "Error: Invalid Number"
return None
# convert number to a name using if/elif/else
# don't forget to return the result!
import random
def rpsls(player_choice):
# delete the follwing pass statement and fill in your code below
# print a blank line to separate consecutive games
print "\n"
# print out the message for the player's choice
print "Player chooses ", player_choice
# convert the player's choice to player_number using the function name_to_number()
player_number = name_to_number(player_choice)
# compute random guess for comp_number using random.randrange()
comp_number = random.randrange(0,5)
# convert comp_number to comp_choice using the function number_to_name()
comp_choice = number_to_name(comp_number)
# print out the message for computer's choice
print "Computer chooses ", comp_choice
# compute difference of comp_number and player_number modulo five
difference = (comp_number - player_number)%5
# use if/elif/else to determine winner, print winner message
if (difference == 1 or difference == 2):
print "Computer wins!"
elif (difference == 3 or difference == 4):
print "Player wins!"
else:
print "Player and computer tie!"
# test your code - LEAVE THESE CALLS IN YOUR SUBMITTED CODE
rpsls("rock")
rpsls("Spock")
rpsls("paper")
rpsls("lizard")
rpsls("scissors")
# always remember to check your completed program against the grading rubric