Does Python use a compiler or interpreter or a combination? -


possible duplicate:
cpython bytecode interpreter?

my question is:

does python use compiler, interpreter or combination of them?

python uses virtual machine aproach (as php, ruby, .net languages etc), python implementation uses compiler create intermediate language executed on virtual machine.


Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -