This repository contains a collection of exercises and examples that I have completed while studying the book "Python Crash Course" by Eric Matthes. The collection starts at Chapter 8, "Functions". I'm using this repository as a "progress bar" of my learning.
The repository is organized into chapters, with each chapter containing its respective exercises and examples. The directory structure is as follows:
python-crash-course/
│
├── chapter_01/
│ ├── exercise_1.py
│ └── example_1.py
│
├── chapter_02/
│ ├── exercise_2.py
│ └── example_2.py
│
└── ...