How can I have multiple files run using python?

Try this bash script

python bot1.py &
python bot2.py &
python bot3.py
4 Likes