Inside the Python VM: Code Objects
摘要
The Python Virtual Machine (PVM) is the core that runs behind Python code. It is responsible for interpreting and executing every line of code we write. Everything from converting bytecode to actual operations, creating and destroying objects, to memory management falls under its domain. In the following chapters, I will use simple programs to explore the operating principles of the Python Virtual Machine.