SyntaxFix
Write A Post
Hire A Developer
Questions
The other answer is very complete, but here is a rule of thumb:
call is blocking:
call
call('notepad.exe') print('hello') # only executed when notepad is closed
Popen is non-blocking:
Popen
Popen('notepad.exe') print('hello') # immediately executed