whats the difference between subprocess popen and call
https://stackoverflow.com/questions/7681715/whats-the-difference-between-subprocess-popen-and-call-how-can-i-use-them
-
callis blocking:call('notepad.exe') print('hello') # only executed when notepad is closed -
Popenis non-blocking:Popen('notepad.exe') print('hello') # immediately executed
好的心态+正确的方法
浙公网安备 33010602011771号