What is the best way to run all Python files in a directory?
python *.py
only executes one file. Writing one line per file in a shell scrip
bash has loops:
for f in *.py; do python "$f"; done