The Rock Paper Scissor Game project consists of a project file with python script (RPS.py). This program implements the game for both single player against the computer and multiplayer among friends. All the playing rules are the same just like we play in a real-time game.
About Rock Paper Scissor Game in Python CLI Mode
This game is simply in the command line. First, the player has to pick between ‘r’ or ‘p’ or ‘s’ to choose the weapon(rock/paper/scissors) to play. You can either play a rock paper scissor game with a computer or even with friends.
Winning Rules of this game is as follows:
Rock vs paper->paper wins
Rock vs scissor->Rock wins
paper vs scissor->scissor wins
All the instructions will be displayed in the game. The gameplay design is so simple that user won’t find it difficult to use and understand.
How To Run Rock Paper Scissor Game in Python CLI Mode ?
To run this project, you must have installed Python on your PC. After downloading the project, follow the steps below:
Step1: Extract/Unzip the file
Step2: Go inside the project folder, open cmd then type RPS.py and enter to start the system.
OR
Step2: Simply, double click the RPS.py file and you are ready to go.