A simple command-line implementation of the classic Rock-Paper-Scissors game in Python.
The game is played as a best of 3 match between the player and the computer.
Each round, the player makes a choice, and the computer randomly chooses one as well. The winner is determined using the traditional rules:
- Rock beats Scissors
- Scissors beats Paper
- Paper beats Rock
The game tracks the score until either the player or the computer wins 2 rounds.
Make sure you have Python installed.
Then in terminal:
python rock_paper_scissors.py- Interactive input via terminal
- Randomized computer moves
- Score tracking
- Best-of-three match system
rock-paper-scissors/
โโโ rock_paper_scissors.py
โโโ README.mdLet's play rock, paper, or scissors!
Make your choice! rock
Computer chose: scissors
You won
Current Score - Player: 1, Computer: 0Made as a part of my Python learning journey โจ