This repository contains a simple implementation of the Rock, Paper, Scissors game in Python. The game allows a user to play against the computer, with the outcome being determined based on the classic rules of the game.
- The user is asked to choose Rock (0), Paper (1), or Scissors (2).
- The computer randomly selects one of the three options.
- The outcome is determined based on the classic rules of Rock, Paper, Scissors:
- Rock beats Scissors
- Scissors beats Paper
- Paper beats Rock
- Identical choices result in a draw
The game includes visual representations of Rock, Paper, and Scissors to enhance the user experience.
This code was written as a learning exercise to practice Python programming. It includes basic concepts such as conditionals, user input handling, random number generation, and list indexing.