Welcome to my learning laboratory! This repository is a dedicated space for simple, foundational projects aimed at solidifying my knowledge of Python and related development tools.
The goal isn't complex, production-ready code, but rather clear, readable, and functional practice to build a strong foundation.
Each project is contained in its own folder and typically includes a brief explanation of the concepts it covers.
| Project Name | Concept Focused On | Status |
|---|---|---|
days_remainder |
if/elif/else, Basic I/O |
Complete |
DinnerCalculator_Ladies |
Basic i/o | complete |
Simple_Calculator |
functions, if/elif/else, Basic I/O |
To Do |
| ...and more to come! |
If you want to run any of these projects, here's how you can quickly set up your environment.
- Python 3.13 installed on your system.
-
Clone the repository to your local machine:
git clone [https://github.com/](https://github.com/)[Beliro]/Python-Beginner-Projects.git cd Python-Beginner-Projects -
(Optional but Recommended) Create a virtual environment to keep dependencies isolated:
python -m venv venv source venv/bin/activate # On Windows, use: .\venv\Scripts\activate
-
Run a project! Navigate to a project folder and execute the main Python file:
cd Python_Beginner_Projects Days_Remainder.py
- Python 3
- Git & GitHub (for version control and hosting)
- Virtual Environments (for managing dependencies)
This project is open-source and available under the MIT License. Feel free to explore and use the code for your own learning!