1. Compiles .py source code to .pyc bytecode.
2. Bytcode is fed to the python virtual machine
3. The python virtual machine executes bytcode instructions

Bytecode Generation and Python Virtual Machine are two videos that do a good job of giving a brief and clear explanation.

January 1, 2016 python


Previous post
Counting Set Bits ###Description: Write a function that takes an (unsigned) integer as input, and returns the number of bits that are equal to one in the binary
Next post
Colored Output and Automatic Testing We can get colored output and automatic testing in our python development process by using rednose and sniffer. Below are some example files that