-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRPS.py
99 lines (91 loc) · 3.11 KB
/
RPS.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
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
rock = '''
Rock
_______
---' ____)
(_____)
(_____)
(____)
---.__(___)
'''
paper = '''
Paper
_______
---' ____)____
______)
_______)
_______)
---.__________)
'''
scissors = '''
scissors
_______
---' ____)____
______)
__________)
(____)
---.__(___)
'''
r = rock
s = scissors
p = paper
import random
def rps():
# number of lives
life = 5
keep_playing = True
print(f'You have received {life} lives for this gamep')
while life > 0 and keep_playing == True:
# generate player and computer choice
player_input = input('Enter r, p, s for Rock, Paper, Scissors:')
game_list = ['r','p','s']
computer_input = random.choice(game_list)
# convert input to Ascil Art variable
if player_input == 'r' or player_input == 'p' or player_input == 's':
print('You chose:')
if player_input == "r":
print(r)
elif player_input == "s":
print(s)
else:
print(p)
print('Computer chose:')
if computer_input == "r":
print(r)
elif computer_input == "s":
print(s)
else:
print(p)
#Logical functions for the game
if player_input == computer_input:
print('a tie!')
elif player_input == 'r':
if computer_input == 's':
print('Rock Smashes Scissors, You Win!')
else:
print('Paper Covers Rock, You Lose!')
life -= 1
print(f'You have {life} more lives')
elif player_input == 'p':
if computer_input == 's':
print('Scissors Cuts Paper, You Lose!')
life -= 1
print(f'You have {life} more lives')
else:
print ('Paper Covers Rock, You Win!')
else:
if computer_input == 'p':
print('Scissors Cuts Paper, You Win!')
else:
print('Rock Smashes Scissors, You Lose!')
life -= 1
print(f'You have {life} more lives')
else:
print("You lose!, invalid selection")
life -= 1
print(f'You have {life} more lives')
choice = input('Would you like to keep playing? : [y/n]')
if choice == 'y':
keep_playing = True
else:
keep_playing = False
rps()