call and execute multiple python files code example
Example 1: how to run multiple python files one after another
python a.py;python b.py;python c.py ...
Example 2: how to run multiple python files one after another
python a.py & python b.py & python c.py ....