This repository provides a comprehensive set of 100 code exercises and over 20 coding challenges designed to complement The Python Programmer Udemy course. Each chapter includes practical coding tasks and tests to sharpen Python skills and ensure understanding of essential programming concepts.
The Python Programmer repository serves as a comprehensive collection of 100 coding exercises and over 20 coding challenges, meticulously designed to enhance the learning experience for students enrolled in the The Python Programmer Udemy course developed by Shehab Abdel-Salam.
Overview
This resource is structured into chapters, each aimed at solidifying Python programming concepts through practical exercises. The exercises provide hands-on practice, while accompanying tests are included to verify the accuracy of solutions, fostering a robust understanding of Python.
Repository Structure
The repository is organized as follows:
├── chapters/
│ ├── chapter1/
│ │ ├── exercises/
│ │ │ ├── exercise_ch1_01.py
│ │ │ ├── exercise_ch1_02.py
│ │ │ └── ...
│ │ └── tests/
│ │ └── test_ch01.py
│ ├── chapter2/
│ │ ├── exercises/
│ │ │ ├── exercise_ch2_01.py
│ │ │ ├── exercise_ch2_02.py
│ │ │ └── ...
│ │ └── tests/
│ │ └── test_ch02.py
│ └── ...
├── ninja_challenges/
│ ├── exercises/
│ │ ├── challenge_01.py
│ │ ├── challenge_02.py
│ │ └── ...
│ └── tests/
│ └── test_ninja_challenges.py
The chapters directory hosts individual chapter folders, containing dedicated exercise and test files, along with a main.py for managing code testing. The ninja_challenges directory offers additional problems to tackle post-course completion, allowing for extended practice and skill development.
Getting Started
To initiate learning, ensure the following prerequisites are met:
- Python version 3.12 or higher
pip
package managerpytest
for testing verification
Clone the repository using:
git clone https://github.com/shehab-as/The-Python-Programmer.git
Navigate into the repository directory, and exercises can be run from their respective chapter folders by modifying the main.py files and executing the corresponding test cases.
Ninja Challenges
Additionally, the Ninja Challenges present further opportunities for honing skills, inspired by the EPI book and LeetCode. Solutions can be tested similarly, promoting advanced problem-solving skills.
For any issues or queries, feel free to raise an issue. Happy coding!
No comments yet.
Sign in to be the first to comment.