| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This repository is a beginner-friendly Python learning path built from the roadmap.sh Python roadmap. It turns the roadmap into ten short lessons with examples, explanations, and practice-ready notes.
The goal is simple: learn Python step by step, build confidence with the core basics, and keep every lesson small enough to study in one sitting.
| Lesson | Topic | Format |
|---|---|---|
| 1 | Basic Syntax | Markdown guide |
| 2 | Variables and Data Types | Markdown guide |
| 3 | Conditionals | Jupyter notebook + notes |
| 4 | Type Casting | Markdown guide |
| 5 | Exceptions | Markdown guide |
| 6 | Functions & Built-in Functions | Markdown guide + notebook |
| 7 | Loops | Markdown guide + notebook |
| 8 | Lists, Tuples, and Sets | Markdown guide + notebooks |
| 9 | Dictionaries | Markdown guide + notebook |
| 10 | Working with Strings | Markdown guide + notebook |
| Project | Topics | Format |
|---|---|---|
| Secret Code Maker (Caesar Cipher) | Encoding and decoding text, ord() and chr(), loops, conditionals, functions, user input, and while True | Markdown guide + Python script |
python/
├── README.md
├── assets/
│ └── learn-python-banner.svg
├── lesson1/
│ └── readme.md
├── lesson2/
│ └── readme.md
├── lesson3/
│ ├── lesson3.ipynb
│ └── readme.md
├── lesson4/
│ └── readme.md
├── lesson5/
│ └── readme.md
├── lesson6/
│ └── readme.md
├── lesson7/
│ └── readme.md
├── lesson8/
│ ├── list.ipynb
│ ├── readme.md
│ ├── sets.ipynb
│ ├── task.py
│ └── tuple.ipynb
├── lesson9/
│ ├── dictionary.ipynb
│ ├── readme.md
│ └── task.py
└── lesson10/
├── readme.md
├── strings.ipynb
└── task.py
└── mini-project_1/
├── readme.md
└── Secret Code Maker (Caesar Cipher).py
This structure keeps the roadmap focused on the essentials and makes it easy to publish on GitHub as a learning series. The banner and badges provide a clean front page, while the lesson folders keep the teaching material organized.
If you want, I can also make each lesson page link back to this main README and add next/previous navigation between lessons.
| Back | FazBrowse Home | New Git URL |