I don\'t understand why it\'s so hard to do this on Windows.
I want to spawn a bunch of command prompt windows which will run other scripts. The reason I want this i
How about
os.system("cmd /c {command here}")
Or even
os.system("{command here}")
It is the start command the one that is launching a separate session instead of using the same one the python program is running on.