Lecture Plan: Clickhere
Important point: "Python is both compiled and interpreted . When the command '
python example.py' is executed,
the Python interpreter first compiles example.py
into bytecode (.pyc), which is then
executed by the Python Virtual Machine (PVM).
Like Java, Python uses bytecode and a virtual machine.
The difference is that the JVM uses Just-In-Time (JIT)
compilation for faster execution, whereas the PVM executes the
bytecode directly." Resources: