RoShamBo is a simple Python-based Rock, Paper, Scissors game where you can compete against an Al. Test your strategy and see if you can outsmart it
- Run the program.
- Choose one of the three options:
- Rock
- Paper
- Scissors
- The program will display the AI's choice and announce the winner!
- Rock beats Scissors.
- Paper beats Rock.
- Scissors beat Paper.
- If you and the AI make the same choice, it's a tie.
- Python 3.6 or later.
- The
random
module (pre-installed with Python).
- Ensure Python is installed on your machine.
- Download the code.
- Open a terminal and navigate to the file's directory.
- Run the program using the command:
python RoShamBo.py
- Enjoy the game! 🎉
Enter [Rock, Paper, Scissors]: Paper
You chose Paper and the AI chose Rock
You win!
Enter [Rock, Paper, Scissors]: Scissors
You chose Scissors and the AI chose Rock
You lose!
Enter [Rock, Paper, Scissors]: Rock
You chose Rock and the AI chose Rock
It's a tie!
This project was developed as part of learning Python programming. 🧑💻