首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

subprocess的Popen跟call有啥区别呀

2013-01-09 
subprocess的Popen和call有啥区别呀?如题。[解决办法]popen可以向子进程写或者从子进程读,call只是让子进程

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明显高级得多。。

热点排行