Welcome to my Learning Python repository.
This repository is a collection of notes, exercises, concepts, and programs created while learning python. It includes various topics ranging from basic syntax to more advanced concepts. The objective of this repository is to document my learning journey and to have a reference for future projects and studies.
Each program is housed in its own folder, which contains:
- The Python script that implements the program.
- A
README.md
file that explains the program, key concepts, and any useful tips or tricks I encountered while working on it.
The repository is organised as follows:
learning_python/
|-- Sets/
| |-- Add/
| |-- add.py
| |__ add_readme.md
| |-- Check Strict Superset/
| |-- check_strict_superset.py
| |__ check_strict_superset_readme.md
|__ ...
|-- String Manipulation
| |-- Alphabet Rangoli/
| |-- alphabet_rangoli.py
| |__ alphabet_rangoli_readme.md
| |-- Capitalize/
| |-- capitalize.py
| |__ capitalize_readme.md
|__ ...
Each folder contains:
- Python File (
.py
): The code for the program. - README.md: An explanation of how the program works, any new concepts learned, and any helpful insights or tips.
- Sets
- String Manipulation
- Debugging
- Basic Data Types
More topics on the way!
To begin learning or experimenting with the code in this repository, you can simply clone the repository and start working on the Python files.
git clone https://github.com/yourusername/learning_python.git
cd learning_python
I welcome contributions!
If you want to add more programs, improve explanations, or share new tips and tricks you've learned, feel free to fork the repository and submit a pull request.