First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
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')