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