Skip to content
Advertisement

Execute python script inside a python script

I have a scenario where i want to dynamically generate a python script – inside my main python script – store it as a string and then when need be, execute this dynamically generated script from my main script.

Is this possible, if so how?

thanks

Advertisement

Answer

Read up on the execfile() function.

http://docs.python.org/library/functions.html?highlight=exec#execfile

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement