Re: [Tutor] Complied Python program...

2010-01-31 Thread Alan Gauld
"Ken G." wrote In using Geany, I have the ability to complied a Python program. For example, I can complied "program.py" to program.pyc." You compile (note spelling) a python script everytime you import it (if it has not already been compiled). If you compile a new(or changed) script Python

Re: [Tutor] Complied Python program...

2010-01-31 Thread Wayne Werner
On Sun, Jan 31, 2010 at 9:46 AM, Ken G. wrote: > In using Geany, I have the ability to complied a Python program. For > example, I can complied "program.py" to program.pyc." > > What is the purpose of a complied Python program? Can it be transported to > another computer without Python installe

[Tutor] Complied Python program...

2010-01-31 Thread Ken G.
In using Geany, I have the ability to complied a Python program. For example, I can complied "program.py" to program.pyc." What is the purpose of a complied Python program? Can it be transported to another computer without Python installed as run as it is? For example, use "run program.pyc"