-
Notifications
You must be signed in to change notification settings - Fork 1
/
Chapter 38 - RockPaperScissors.py
52 lines (44 loc) · 1.43 KB
/
Chapter 38 - 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
# CHAPTER 38
# RockPaperScissors Game
import random
while True:
choices = ["rock", "paper", "scissors"]
computer = random.choice(choices)
player = None
while player not in choices:
player = input("rock, paper, scissors? ").lower()
if player == computer:
print(f"computer: {computer}")
print(f"player: {player}")
print("Tie!")
elif player == "rock":
if computer == "paper":
print(f"computer: {computer}")
print(f"player: {player}")
print("You lose!")
elif computer == "scissors":
print(f"computer: {computer}")
print(f"player: {player}")
print("You win!")
elif player == "paper":
if computer == "scissors":
print(f"computer: {computer}")
print(f"player: {player}")
print("You lose!")
elif computer == "rock":
print(f"computer: {computer}")
print(f"player: {player}")
print("You win!")
elif player == "scissors":
if computer == "rock":
print(f"computer: {computer}")
print(f"player: {player}")
print("You lose!")
elif computer == "paper":
print(f"computer: {computer}")
print(f"player: {player}")
print("You win!")
play_again = input("Play again? (yes/no)? ").lower()
if play_again != "yes":
break
print("Bye!")