Python执行系统命令的方法 os.system(),os.popen(),commands
Posted 天涯之巅的地盘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python执行系统命令的方法 os.system(),os.popen(),commands相关的知识,希望对你有一定的参考价值。
转载:http://blog.csdn.net/b_h_l/article/details/12654749
第一种:使用os.system()
import os
os.system(‘cat /etc/profile‘)
第二种:使用os.popen()
import os output = os.popen(‘cat /proc/cpuinfo‘) print output.read()
通过 os.popen() 返回的是 file read 的对象,对其进行读取 read() 的操作可以看到执行的输出
第三种:使用commands
import commands (status,output)=commands.getstatusoutput(‘cat /etc/profile‘) print status print output #===============linux中 output=commands.getoutput(‘cat /etc/profile‘) status=commands.getstatus(‘cat /etc/profile‘) #===============同样可以用window中 (status,output)=commands.getstatusoutput(‘dir‘) print status print output
总结:第一种最常用,但有时需要掌握命令执行后的结果,此时我们可以采用第三种
以上是关于Python执行系统命令的方法 os.system(),os.popen(),commands的主要内容,如果未能解决你的问题,请参考以下文章