I have a list of .py file that I need to run sequentially. I usually do it manually, one by one.
Anyway I'd like to have a .py file by which I run these .py automatically.
In R I usually use the command source
:
Source (file1, file2 etc)
Is there a way to do anything similar in python? By the way, I use IDLE, so I'd like to have a solution using this program.
Thank you in advance