Führen Sie alle Python -Dateien in einem Verzeichnis in Windows aus

for f in *.py; do python "$f"; done
itsvinayak