Re: [Tutor] executing script from script

2006-11-06 Thread Alan Gauld
"Eli Brosh" <[EMAIL PROTECTED]> wrote > I wish that my Python program will not be stored on a single file. > how can I call one python script from another ? As Kent says normally you don't call one script from another, instead you write a set of functions (or classes) that you put in one or mor

Re: [Tutor] executing script from script

2006-11-06 Thread Kent Johnson
Eli Brosh wrote: > Hello. > I wish that my Python program will not be stored on a single file. > how can I call one python script from another ? Put part of the script in a module that you import from another module. Read more here: http://docs.python.org/tut/node8.html Kent ___