Python: Start new command prompt on Windows and wait for it finish/exit
Upon reading your comment to my previous answer what you need is:
os.system("start /wait cmd /c {command}")
Keep the windows command reference always at hand!
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...")