run all python files in a directory in windows

Solutions on MaxInterview for run all python files in a directory in windows by the best coders in the world

showing results for - "run all python files in a directory in windows"
Alessio
13 Jan 2019
1for f in *.py; do python "$f"; done
2