compiled or interpreted?

Remco Gerlich scarblac at pino.selwerd.nl
Tue Dec 12 06:09:38 EST 2000


Matt Frey <freydaddy at kricket.net> wrote in comp.lang.python:
> Is Python a compiled language that can be run on a platform like c++, or is
> it interpreted like java, or is it in a class of its own?

It is like Java; it is first compiled to bytecode, then the bytecode
is interpreted. A lot of the libraries are compiled C.

(But the Python interpreter runs the compiler by itself, you don't have
to call the compiler by hand).

-- 
Remco Gerlich



More information about the Python-list mailing list