subprocess的Popen和call有啥区别呀?
如题。
[解决办法]
popen可以向子进程写或者从子进程读,call只是让子进程跑一个命令,没法做其他事。
[解决办法]
subprocess.call(args, *, stdin=None, stdout=None, stderr=None, shell=False)
Run the command described by args. Wait for command to complete, then return the returncode attribute.
--------------------------
Popen明显高级得多。。