I don’t quite understand your needs. Do you have to open three “visual terminal interfaces”? If you just want three files to be executed at the same time, then write three lines python a.py & python b.py & python c.py & & to indicate that this command is executed in the background, that is, divided into three processes Execute
I don’t quite understand your needs. Do you have to open three “visual terminal interfaces”?
If you just want three files to be executed at the same time, then write three lines
python a.py &
python b.py &
python c.py &
& to indicate that this command is executed in the background, that is, divided into three processes Execute