A collection of my own solutions to the exercises in the Python Programming Projects Udemy course. All code was written from scratch, without looking at the course solutions. The goal of this repository is to track my progress and provide a reference for others who prefer to learn by doing.
Each numbered folder corresponds to a section of the course. Inside every folder you’ll find one or more
Python scripts (ex1.py, ex2.py, …) plus any data files needed by those scripts.
| Folder | Topic / Section |
|---|---|
| 1 | Strings and Variables |
| 2 | Numbers and Math |
| 3 | Booleans and Conditionals |
| 4 | Functions |
| 5 | Lists |
| 6 | Dictionaries |
| 7 | Tuples |
| 8 | Files |
| 9 | Modules |
# Clone the repo
git clone https://github.com/Mateusz404/learningPython.git
cd learningPython
# (Optional) create a virtual environment
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
# Run any exercise
python 4/ex1.py- Hands‑on learning – Every exercise reinforces a concept from the course.
- Self‑assessment – Comparing my solutions with the instructor’s afterward helps identify alternate approaches.