I have written multiple python scripts that are to be run sequentially to achieve a goal. i.e:
my-directory/ a1.py, xyz.py, abc.py, ...., an.py
All these scripts are in the same directory and now I want to write a single script that can run all these .py scripts in a sequence. To achieve this goal, I want to write a single python(.py) script but don't know how to write it. I have windows10 so the bash script method isn't applicable.
What's the best possible way to write an efficient migration script in windows?