Hi There!

I created a few python scripts and everything is working fine. But to
make it easier to run the procedure i want to couple these scripts in
one big script. Is there a possibility to do this, can I for example
make a script dat 'calls' the other script in the right order?

Many thanks!
Sander



Let's suppose your scripts are /path/script1.py, /path/script2.py and /path/script3.py, then

import os

os.system("/path/script1.py")
os.system("/path/script2.py")
os.system("/path/script3.py")

will execute them one after the other.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to