useful snippets
General Info
Useful Snippets

14.0.6 Run another python program from within your python program

Description:

Here is how to have your python program run a different python program

Example:

exec(open("/path/to/your/other/python/program.py").read())