标签:常用函数 out res 管道 imp 常用 shel stdout sub
import subprocess
res=subprocess.Popen(‘dir‘,shell=True,stdout= subprocess.PIPE) #执行命令dir,将结果交给管道
res.stdout.read() #读取管道内容
标签:常用函数 out res 管道 imp 常用 shel stdout sub
原文地址:https://www.cnblogs.com/chrrydot/p/9839430.html