I have a workflow where I run multiple Python scripts sequentially. I run them manually for now.
These scripts reside in different folders, with a few in a single folder. e.g.
1. C:\Users\harsh\My Drive\Folder\Code\3.py
2. C:\Users\harsh\My Drive\Folder\Code\4.py
3. C:\Users\harsh\My Drive\Folder\Code\5.py
4. C:\Users\harsh\My Drive\Folder\Code\Helper codes\6.py
5. C:\Users\harsh\My Drive\Folder\Code\Process\7.py
How do I setup a script that can run these programs sequentially?
I am using the PyCharm IDE on Windows 10.