How to run multiple python file in a folder one after another [duplicate]
问题 This question already has answers here : Run all Python files in a directory (2 answers) Closed 3 years ago . I have around 20 python files. Each time I run these files in the terminal this form one after another : python a.py python b.py python c.py python d.py python e.py python f.py python g.py . . . (I have provided general file names here) This process takes lot of time. Is it possible to run these file together one after another through any script..? If possible, then how..? Please