Skip to content

Instantly share code, notes, and snippets.

@jpwhite3
Created May 20, 2019 00:26
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jpwhite3/43037f283cb8b097ec7d19e33ac8006e to your computer and use it in GitHub Desktop.
Save jpwhite3/43037f283cb8b097ec7d19e33ac8006e to your computer and use it in GitHub Desktop.
"Rock-Paper-Scissors" in Python
import random
CHOICES = 'rps'
def get_player_choice():
"""Get user input and validate it is one of the choices above"""
player_choice = None
while player_choice is None:
player_choice = input('Choices: \n(R)ock \n(P)aper \n(S)cissors \n\nPick: ')
if player_choice.lower() not in CHOICES:
player_choice = None
return player_choice.lower()
def get_computer_choice():
"""Have the computer pick one of the valid choices at random"""
computer_choice = random.randint(0, 2)
computer_choice = CHOICES[computer_choice]
return computer_choice
def is_draw(player_choice, computer_choice):
"""Check if game was a draw"""
if player_choice == computer_choice:
return True
def print_winner(player_choice, computer_choice):
"""Check to see who won"""
if player_choice == 'r' and computer_choice == 's':
print('Player wins!')
elif player_choice == 's' and computer_choice == 'p':
print('Player wins!')
elif player_choice == 'p' and computer_choice == 'r':
print('Player wins!')
else:
print('Computer wins!')
print('%s beats %s' % (computer_choice, player_choice))
def play_game():
"""play the game"""
player_choice = get_player_choice()
computer_choice = get_computer_choice()
if is_draw(player_choice, computer_choice):
print("It's a draw, both players picked %s: " % player_choice)
else:
print("Computer picked: %s" % computer_choice)
print("Player picked: %s" % player_choice)
print_winner(player_choice, computer_choice)
if __name__ == "__main__":
play_game()
@Milan151106
Copy link

how do I restart the game after I run the program?

@PzmuV1517
Copy link

how do I restart the game after I run the program?

You close and re open the project... Duh

@thpplayz2
Copy link

add a button to retry it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment