This is a simple Rock-Paper-Scissors game implemented in Python. You play against the computer, which randomly selects "rock", "paper", or "scissors". The game determines the winner based on the classic rules:
- Rock beats Scissors
- Paper beats Rock
- Scissors beats Paper
- Run the code.
- When prompted, type your choice: "rock", "paper", or "scissors".
- The computer will also make a choice, and the game will display who wins.
- At the end of each round, you can choose to play again by typing "yes" or "no".
- Python 3.x
python main.py