命令执行
import subprocess
res=subprocess.Popen('dir',shell=True,stdout= subprocess.PIPE) #执行命令dir,将结果交给管道
res.stdout.read() #读取管道内容
import subprocess
res=subprocess.Popen('dir',shell=True,stdout= subprocess.PIPE) #执行命令dir,将结果交给管道
res.stdout.read() #读取管道内容