-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPaper_Rock_Scissors.py
45 lines (42 loc) · 1.39 KB
/
Paper_Rock_Scissors.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
import random
while True:
choices = ["rock", "paper", "scissors"]
computer = random.choice(choices)
player = None
while player not in choices:
player = input("rock, paper, or scissors?: ").lower() # zamieniamy na małe
if player == computer:
print("computer: ",computer)
print("player: ",player)
print("Tie!")
elif player == "rock":
if computer == "paper":
print("computer: ", computer)
print("player: ", player)
print("You lose!")
if computer == "scissors":
print("computer: ", computer)
print("player: ", player)
print("You win!")
elif player == "scissors":
if computer == "rock":
print("computer: ", computer)
print("player: ", player)
print("You lose!")
if computer == "paper":
print("computer: ", computer)
print("player: ", player)
print("You win!")
elif player == "paper":
if computer == "scissors":
print("computer: ", computer)
print("player: ", player)
print("You lose!")
if computer == "rock":
print("computer: ", computer)
print("player: ", player)
print("You win!")
play_again = input("Play again? (yes/no): ").lower()
if play_again !="yes":
break
print("Bye!")