My journey from zero to Python, one small exercise at a time.
hello.py- first print statement practicestoring_data.py- variables, data types, functions, loops, and user inputnumber-guessing-game/game.py- a simple command-line guessing game
- Variables and data types
- Functions
- Conditionals and loops
- User input
- Random number generation
- Basic command-line game flow
python hello.pypython storing_data.pycd number-guessing-game
python game.pyThe game picks a secret number between 1 and 100. You keep guessing until you get it right, and the game tells you whether each guess is too high or too low.
- This repository is intentionally simple and meant to show progress while learning.
- A good next step is to turn these examples into a single organized mini-course with clearer naming and short write-ups for each file.