Quick Start β’ Issues β’ Contributing β’ Code of Conduct
A comprehensive Python learning platform with 700+ curated programming issues organized by difficulty. From your first "Hello World" to advanced algorithms and system design β everything you need to master Python is here.
β¨ All issues include:
- β Detailed problem descriptions
- β Starter code templates
- β Test case structures
- β Progressive hints
- β Complexity analysis
- β Resource links
- β Python 3.10 or higher
- β Git installed
- β Code editor (VS Code recommended)
# 1. Clone the repository
git clone https://github.com/hackdartstorm/Python.git
cd Python
# 2. Create virtual environment
python -m venv venv
# 3. Activate virtual environment
# Windows:
venv\Scripts\activate
# macOS/Linux:
source venv/bin/activate
# 4. Install dependencies (optional)
pip install -r requirements.txt# 1. Browse issues
# Visit: https://github.com/hackdartstorm/Python/issues
# 2. Fork the repository
# Click "Fork" button on GitHub
# 3. Clone your fork
git clone https://github.com/YOUR_USERNAME/Python.git
cd Python
# 4. Create a branch
git checkout -b issue-<number>-your-name
# 5. Solve the issue
# Create your solution in the specified path
# 6. Commit and push
git add .
git commit -m "Solve issue #<number>"
git push origin issue-<number>-your-name
# 7. Create Pull Request
# Go to GitHub and click "New Pull Request"| Difficulty | Count | Labels |
|---|---|---|
| Beginner | 200+ | beginner, good first issue |
| Medium | 400+ | medium |
| Advanced | 100+ | advanced |
| Category | Link |
|---|---|
| All Issues | View 700+ Issues |
| Beginner Friendly | View Beginner Issues |
| Good First Issues | View First Issues |
| Medium Difficulty | View Medium Issues |
| Advanced | View Advanced Issues |
| Category | Issues | Topics |
|---|---|---|
| Array Problems | 150+ | Sorting, searching, manipulation |
| String Problems | 100+ | Manipulation, patterns, parsing |
| Dynamic Programming | 100+ | Optimization, recursion |
| Graph Problems | 80+ | BFS, DFS, shortest path |
| Tree Problems | 70+ | BST, traversal, balancing |
| Stack/Queue | 60+ | Data structures, algorithms |
| Hash Table | 50+ | Dictionaries, sets, mapping |
| Math Problems | 40+ | Number theory, calculations |
python-learning/
βββ basics/ # Python fundamentals
β βββ 01_introduction/ # Hello World, input/output
β βββ 02_variables_types/ # Variables, operators
β βββ 03_control_flow/ # If/else, loops
β βββ 04_functions/ # Functions, recursion
β βββ 05_data_structures/ # Lists, tuples, sets, dicts
β βββ 06_strings/ # String operations
β βββ 07_file_handling/ # File I/O
β βββ 08_oop/ # Object-Oriented Programming
β βββ 09_error_handling/ # Exceptions, try/except
β βββ 10_advanced/ # Lambda, modules, advanced
βββ fastapi/ # FastAPI examples
βββ rest_api/ # Flask REST API
βββ llm_fundamentals/ # LLM from scratch
βββ exercises/ # Exercise solutions
βββ data/ # Dataset files
βββ .github/
β βββ ISSUE_TEMPLATE/ # Issue templates
β βββ workflows/ # GitHub Actions
βββ README.md # This file
βββ CONTRIBUTING.md # Contribution guide
βββ CODE_OF_CONDUCT.md # Community guidelines
βββ CHANGELOG.md # Version history
βββ SECURITY.md # Security policy
βββ requirements.txt # Dependencies
We welcome contributions of all kinds! Here's how to help:
- Solve Issues - Pick an issue and submit your solution
- Improve Documentation - Fix typos, add examples
- Create New Issues - Report bugs or suggest features
- Help Others - Answer questions in discussions
- Review PRs - Review and provide feedback
# 1. Fork the repository
# 2. Clone your fork
git clone https://github.com/YOUR_USERNAME/Python.git
cd Python
# 3. Create a branch
git checkout -b feature/your-feature
# 4. Make your changes
# 5. Test your changes
# 6. Commit and push
git add .
git commit -m "feat: add your feature"
git push origin feature/your-feature
# 7. Create a Pull Request- β Follow PEP 8 style guidelines
- β Add comments explaining your code
- β Include test cases
- β Update documentation if needed
- β Be respectful and inclusive
- π Contributing Guide
- π¬ GitHub Discussions
- π Report an Issue
- π§ Contact Maintainers
We pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
Positive Behavior:
- β Demonstrating empathy and kindness
- β Being respectful of differing opinions
- β Giving and accepting constructive feedback
- β Accepting responsibility and apologizing
Unacceptable Behavior:
- β Sexualized language or imagery
- β Trolling, insulting, or derogatory comments
- β Public or private harassment
- β Publishing others' private information
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to conduct@pythonmastery.dev. All complaints will be reviewed and investigated promptly and fairly.
Full Code of Conduct: CODE_OF_CONDUCT.md
This project is licensed under the MIT License - see the LICENSE file for details.
MIT License
Copyright (c) 2026 Python Learning Repository
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
- Python Community - For creating and maintaining Python
- All Contributors - Making this project possible
- Open Source - For the amazing tools and libraries
- You - For learning Python and joining our community!
- π Documentation
- π¬ Discussions
- π Issues
- π§ Email
- β Star this repo to show support
- π Watch for updates
- π΄ Fork to contribute
- π’ Share with friends
We welcome contributions of all kinds! Here's how you can help:
- π Fix bugs - Find and fix issues in the codebase
- π Add examples - Contribute new Python examples
- π§ͺ Write tests - Add unit tests for existing code
- π Improve docs - Enhance documentation and explanations
- π‘ Suggest features - Propose new learning modules
- π Review code - Review pull requests from others
- Fork the repository
- Create a branch (
git checkout -b feature/your-feature) - Make your changes
- Test your code
- Commit (
git commit -m 'Add feature') - Push (
git push origin feature/your-feature) - Open a Pull Request
π See CONTRIBUTING.md for detailed guidelines.
A huge thank you to everyone who has contributed to making this project better!
|
hackdartstorm Project Creator & Maintainer |
guerrevg Contributor |
aldomelpignano Contributor |
Rey-han-24 Contributor |
Samprithajgowda Contributor |
Want to be here? Make your first contribution!
Happy Coding! πβ¨