Rock, Paper, Scissors Showdown
Write a Python program that lets you play Rock, Paper, Scissors against the computer.
Steps
- Ask the player to enter 1 for Rock, 2 for Paper, or 3 for Scissors.
- Have the computer randomly choose 1, 2, or 3 of its own.
- Print what the player chose and what the computer chose.
- Compare the two choices: Rock beats Scissors, Scissors beats Paper, Paper beats Rock.
- 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