"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
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
___