This repository documents my python learning through hands on projects. One lesson I learned along the way is that writing code is not the hardest part! The real challenge was thinking through the problem and designing a clear blueprint for implementation. The only way to build that problem solving mindset is through consistent practice!
| Project | Description |
|---|---|
| Console Calculator | A loop-based calculator supporting basic operations with error handling. |
| Number Guessing Game | Guess a random number with hints and limited attempts. |
| Rock Paper Scissor Game | Play rock, paper and scissor against the computer. |
| Simple To Do List App | A console based to-do list app to add, view, mark as done, and delete tasks. |
| Password Generator | Generate strong passwords with options for length, numbers and symbols. |
| BMI Calculator | Calculates BMI using height and weight and also displays health category. |
| Mad Libs Story Generator | Asks user for words and inserts them into a funny story template. |
| Multiple Choice Quiz Game | Asks 10 questions with 4 options, tracks score and shows final percentage. |