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#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

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