Python Interpreter question.
Roy Smith
roy at panix.com
Tue Sep 7 12:56:40 EDT 2004
More information about the Python-list mailing list
Tue Sep 7 12:56:40 EDT 2004
- Previous message (by thread): Python Interpreter question.
- Next message (by thread): Python Interpreter question.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
"Anon" <guess at My.email.address.scum.com> wrote: > Is all of that true? is it right to say in fact that python doesn't have an > interpreter, but rather it has a compiler and VM for running the python > code? Python source code is indeed converted into an intermediate form (byte code) which is then executed on a virtual machine. Very much like Java is. Whether you want to call this "interpreted" or "compiled" is, I suppose, a matter of personal opinion.
- Previous message (by thread): Python Interpreter question.
- Next message (by thread): Python Interpreter question.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list