Python compiled?

Fredrik Lundh fredrik at pythonware.com
Mon Sep 5 17:03:35 EDT 2005


"billiejoex" wrote:

> I know the great advanteges deriving by using interpretation too, I appreciate it very much (I'm newbie in Python and the 
> interpeter really helps me out in many situations), but a 'pure' interpretated language needs obligatorily an interpreter and 
> (sorry for repeating) this could be a problem for distribution (imho).

Python is a compiled language; the Python source code you write is
compiled to byte codes, which are executed by a virtual machine.

on windows, that virtual machine consists of a DLL.  distributing DLLs
have been a solved problem for at least 15-20 years...

</F> 






More information about the Python-list mailing list