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
Post a Comment