First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
answered Jun 24 '1
A python script can be executed by another python script with execfile. Use a main script to execute the two scripts. For example:
execfile('file1.py') execfile('file2.py')