I am trying to run python script from another python script. I know that I can go ahead and use os.system(), but it seems like importing the script of interest as a module is better practice. I understand that when imported, I can use the the different functions from the second script.
My question is what if I want to run the entire second script and not just a few functions from within it? How can I run the second script in its entirety at the end of my first script using the import way.
Thanks