This repository contains small Python projects and exercises completed as part of a structured Python course. Each project is self-contained and demonstrates fundamental Python programming concepts.
- Each project is in its own folder, using
snake_casenaming. - Trivial projects are kept here; larger or more complex projects may be promoted to their own repositories.
Example structure:
python-course-projects/
├── hangman/
│ └── main.py
├── another_project/
│ └── main.py
└── README.md- Python files only; no generated files like
__pycache__/or.pyc. - Stage → Commit → Push workflow for all changes.
- Folder names are
snake_case. - One project per folder.
- Clone the repository:
git 'clone https://github.com/USERNAME/Python-Projects.git' cd 'python-projects
-
Navigate to the project folder: cd "projectname"
-
Run the ppython script: python main.py
This repository is primarily for personal learning and structured exercises. Contributions are not expected, but improvements for clarity or bug fixes are welcome.
This repository does not include a license; all code is for learning purposes.