How Python Works
How Python Works
Interpreter
Binary Code /
Source Code/
Byte Code Executable Computer
Program Compile using Machine Code
Python Compiler Output
add.py add.pyc
PVM
Byte Code
• The compiled code of python source code is called byte code.
• Byte code is collection of mnemonics which understand by
PVM.
• Byte code is platform independent code.
Steps to Prepare Python Applications