How to work on Python Virtual Machine and is it mandatory to work on Python Virtual Machine
Instructor
09914040666 Replied on 28/08/2020
Hey,
Python is an object oriented programming language like Java. Python is called an interpreted language. Python doesn’t convert its code into machine code, something that hardware can understand. It actually converts it into something called byte code. So within python, compilation happens, but it’s just not into a machine language. It is into byte code and this byte code can’t be understood by CPU. So we need actually an interpreter called the python virtual machine. The python virtual machine executes the byte codes. There are steps followed to do so :