Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created April 20, 2020 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/69015ca5c2003c6c8c3be62ef5c4009d to your computer and use it in GitHub Desktop.
Save codecademydev/69015ca5c2003c6c8c3be62ef5c4009d to your computer and use it in GitHub Desktop.
Codecademy export
""" This program will instruct and promt,computer and the user to select either rock, paper or scissor and declare the winner after evaluation"""
from random import randint
options =["ROCK", "PAPER", "SCISSORS"]
message ={"tie":"Yawn it's a tie!",
"won":"Yay you won!", "lost":"Aww you lost!"}
def decide_winner(user_choice, computer_choice):
print "You selected: %s" % user_choice
print "Computer selected: %s" % computer_choice
if user_choice == computer_choice:
print message["tie"]
elif user_choice == options[0] and computer_choice == options[2]:
print message["won"]
elif user_choice == options[1] and computer_choice == options[0]:
print message["won"]
elif user_choice == options[2] and computer_choice[1]:
print message["won"]
else:
print message["lost"]
def play_RPS():
print "Rock, Paper, or Scissors?"
user_choice = raw_input("ENTER Rock, Paper, or Scissors")
user_choice = user_choice.upper()
computer_choice = options[randint(0,2)]
decide_winner(user_choice, computer_choice)
play_RPS()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment