How to run multiple files at once?

Question:
How do I run multiple files at a time?
Repl link:
https://replit.com/@FunStudios/PyBot?v=1

code snippet
```^^^ Idk what that is

Someone just made the same question some hours ago. Like in this topic: How can I have multiple files run using python?

dragonhunter1

4h

Try this bash script

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

@FunStudios the code snippet is where you can put your code from your problem. You start it with back ticks » ``` by the first back ticks you put your language: Python, JS, Bash, etc (no spaces). Then put the second back tick set (you need the same amount on both sides, 1 or 3) then you put your code inside. Here is an example,

print("Hello World!")

I hope this helped :grinning:!

2 Likes

Oh, okay
Thank you for helping

Okay,
This topic is closed I guess.
Thank you for helping!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.