""# π Python Small Projects
A collection of fun and educational Python practice projects
A simple dice rolling game for practicing basic Python concepts.
- File:
dice_rolling_game.py - Topics: Random module, User input, Loops
An interactive number guessing game where the player tries to guess a secret number.
- File:
guess_number.py - Topics: Conditional statements, Loops, Random numbers
The classic Rock, Paper, Scissors game implementation.
- File:
rock_paper_scissor.py - Topics: Game logic, User input, Conditionals
Clone the repository and run any script directly:
python3 dice_rolling_game.py
python3 guess_number.py
python3 rock_paper_scissor.pyThis repository is designed for practicing and improving Python fundamentals through small, focused projects.""