Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
added 35 characters in body; added 9 characters in body
Source Link
Pedro Lobito
  • 99.8k
  • 36
  • 274
  • 278

ToThe accepted answer didn't work for me.
To open on a new command prompt window I had to use:

os.system("start /B start cmd.exe @cmd /k mycommand...") 

To open on a new command prompt window I use:

os.system("start /B start cmd.exe @cmd /k mycommand...") 

The accepted answer didn't work for me.
To open on a new command prompt I had to use:

os.system("start /B start cmd.exe @cmd /k mycommand...") 
Source Link
Pedro Lobito
  • 99.8k
  • 36
  • 274
  • 278

To open on a new command prompt window I use:

os.system("start /B start cmd.exe @cmd /k mycommand...")