-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRock, Paper & Scissors Task.py
104 lines (85 loc) · 3.01 KB
/
Rock, Paper & Scissors Task.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
100
101
102
103
104
# Program for a rock-paper-scissors game
import random
input("Welcome to Rock, Paper, Scissors! Press Enter to continue...\n")
user_score = 0
CPU_score = 0
# Available choices
choice_list = ["Rock", "Paper", "Scissors"]
# Game loop
while True:
# User input and CPU input with validation
# Radomize CPU choice
random_index = random.randint(0, 2)
CPU_choice = choice_list[random_index]
# Change CPU choice from abbr. to full word
if CPU_choice == "R":
CPU_choice = "Rock"
elif CPU_choice == "P":
CPU_choice = "Paper"
elif CPU_choice == "S":
CPU_choice = "Scissors"
# User input
user_choice = input(
"Choose R for Rock, P for Paper, or S for Scissors: \n").upper()
# Change user choice from abbr. full word
if user_choice == "R":
user_choice = "Rock"
elif user_choice == "P":
user_choice = "Paper"
elif user_choice == "s":
user_choice = "Scissors"
# Checking if user input is valid
while user_choice not in choice_list:
user_choice = input(
"That is not a valid choice. Please try again: \n").upper()
print(f"CPU : {CPU_choice}, Player : {user_choice}\n")
# Game logic
# Logic for Tie
while user_choice == CPU_choice:
print("It's a tie!\n")
user_choice = input("Please choose again: \n").upper()
# Change user choice from abbr. to full word
if user_choice == "R":
user_choice = "Rock"
elif user_choice == "P":
user_choice = "Paper"
elif user_choice == "S":
user_choice = "Scissors"
while user_choice not in choice_list:
user_choice = input(
"That is not a valid choice. Please try again: \n").upper()
print(f"CPU : {CPU_choice}, Player : {user_choice}\n")
break
if user_choice == "Rock":
if CPU_choice == "Scissors":
print("You win!\n")
user_score += 1
else:
print("You lose!\n")
CPU_score += 1
elif user_choice == "Paper":
if CPU_choice == "Rock":
print("You win!\n")
user_score += 1
else:
print("You lose!\n")
CPU_score += 1
elif user_choice == "Scissors":
if CPU_choice == "Paper":
print("You win!\n")
user_score += 1
else:
print("You lose!\n")
CPU_score += 1
# Final score
print(f"Player score is {user_score} and the CPU score is {CPU_score}\n")
# Play again?
repeat_choice = input("Would you like to play again? (Y/N): \n").upper()
while repeat_choice not in ["Y", "N"]:
repeat_choice = input(
"That is not a valid choice. Please try again: \n").upper()
if repeat_choice == "N":
break
# End of game
print(
f"\nFinal score is Player: {user_score} and CPU: {CPU_score}\n\nThanks for playing! See you next time!")