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的主要内容,如果未能解决你的问题,请参考以下文章

python环境下,执行系统命令方法

Python执行Linux系统命令的四种方法

21 python调用外部系统命令

python执行系统命令的四种方式

python中,执行命令的方法都有哪些?

python执行这样一条windows系统命令怎么不行