A simple command-line implementation of the classic Rock-Paper-Scissors game using emojis for fun and clarity.
This Python script allows a user to play Rock-Paper-Scissors against the computer. The game includes:
Emoji-based choices (๐ชจ Rock, ๐งป Paper, โ๏ธ Scissors)
Input handling for user choices
Random selection by the computer
Countdown animation before showing the result
Friendly win/lose/tie messages
Make sure you have Python 3 installed on your system.
Save the script in a .py file, e.g., rps_game.py.
Run the script in a terminal:
python rps_game.py
Enter one of the three choices when prompted:
- Rock
- Paper
- Scissors
Watch the countdown and see who wins!
Choose one of the three (Rock, Paper, Scissors): rock 3 2 1 ๐ชจ VS โ๏ธ ๐You win!
User-friendly input prompt
Random computer choice with emojis
Countdown for dramatic effect
Clear win/lose logic with fun emoji messages
Input validation loop (ask again if input is invalid)
Score tracking over multiple rounds
GUI version using tkinter or pygame
Multiplayer mode
This project is open-source and free to use or modify.