You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Welcome to my Python learning repository! This project serves as a step-by-step guide to mastering Python, starting from core mechanics to standard features, iteration protocols, functions, scopes, and hands-on problem sets.
📚 Study Plan & Repo Structure
Here is the index of all chapters, deep-dive guides, and practice problem sets in this repository:
1️⃣ Chapter 01: Python Basics & Data Types
Topic
Key Focus Areas
Link
Python Basics & Inner Workings
PVM, Compiling to Bytecode, .pyc caching in __pycache__, Python implementations (CPython, PyPy).
Local, Enclosing, Global, and Built-in scopes explained with the Magic Glasses & Neighborhood analogies, global vs nonlocal keywords, and Lexical Scope.
The Car Factory analogy explaining Class vs Object, self, __init__, the 4 Pillars (Inheritance, Encapsulation, Polymorphism, Abstraction), Class Variables, Static Methods, and @property.