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() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -