Rock, Paper, Scissors Showdown
A purple rock, yellow sheet of paper, and orange-handled scissors on white.
Write a Python program that lets you play Rock, Paper, Scissors against the computer.
Steps
  1. Ask the player to enter 1 for Rock, 2 for Paper, or 3 for Scissors.
  2. Have the computer randomly choose 1, 2, or 3 of its own.
  3. Print what the player chose and what the computer chose.
  4. Compare the two choices: Rock beats Scissors, Scissors beats Paper, Paper beats Rock.
  5. Print whether the player won, lost, or tied.
Stretch Goal Let the player keep playing multiple rounds in a loop, and keep score across rounds.
Intermediate Card Conditionals