run python file in python script code example
Example 1: run python file using python code
exec(open('file.py').read())
Example 2: how to execute a python file from another python file
import myfile
myfile.myfunction
#calls a specific function from within the file