Python internal working.
Tiku Sarkar
1 min read
Python is an object oriented programming language. It is also called an interpreted language. The standard implementation of python is called “cpython”.
Python internally works as:
First we create a source file using a “.py” Extension. Then the source file is compiled and converted into byte code with ”.pyc” extension. This byte code is not machine code, it is python specific interpretation. Then we use a interpreter called PVM(Python Virtual Machine) to execute the byte code.
I learned the above concept from the YouTube channel “ Chai aur Code “
https://youtu.be/3HTKc-ZgZbg?si=5ZxLi_HybaqSrZiy
1
Subscribe to my newsletter
Read articles from Tiku Sarkar directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by