python常用函数
Posted wintersweet
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python常用函数相关的知识,希望对你有一定的参考价值。
命令执行
import subprocess
res=subprocess.Popen(‘dir‘,shell=True,stdout= subprocess.PIPE) #执行命令dir,将结果交给管道
res.stdout.read() #读取管道内容
以上是关于python常用函数的主要内容,如果未能解决你的问题,请参考以下文章