01_Python Under the Hood
Understanding Python: Compilation, the PVM, and the Role of __pycache__ in Your Folders

Search for a command to run...

Series
I’m sharing my journey from being Python-curious to Python-capable. This isn’t a textbook or a step-by-step course—it’s just me writing down the things I’m learning, the parts that confused me, and the insights that finally made things click.
Understanding Python: Compilation, the PVM, and the Role of __pycache__ in Your Folders

A deep dive into object identity, mutability, and Python’s most common gotcha

If you are coming from languages like C++ or Java, Python variables are probably gaslighting you. They look the same, they use the same = syntax, but they behave completely differently under the hood. I realized I had the wrong mental model. In Pytho...

Understanding How Python Represents and Works With Numbers
