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

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

php - PHPDoc: @return void necessary? -

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