A simple Python implementation of the classic Rock Paper Scissors game. Play against one or two computer opponents in a text-based interface.
The .exe file is in releases. This .exe file does not have viruses. It was created for convenience. I made this file thanks to python -m PyInstaller --onefile .... If you do not trust the .exe file, I recommend you to use the .py file.
- Terminal-based gameplay.
- Play against one computer or two computers.
- Any number of rounds with repeated draws until someone wins.
- Randomized (used math.ceil; secrets.choice from the list which will be created by random.uniform) computer moves.
- Clear scoring system and round tracking.
- Open the
.exefile or.pyfile. - At the start, choose whether you want to play.
- Select the number of players:
1(you against the computer) or2(you against two computers). - You can choose any number of rounds you want.
- Choose a move: a rock - number
1; a paper - number2; scissors - number3. - The game continues until victory in each round; a draw restarts the move.
- The announcement of the winner will keep track of who has what points, and then give the opportunity to win back (even to computers, if the player has definitely lost) if someone has a draw.