码迷,mamicode.com
首页 > 编程语言 > 详细

Python执行系统命令的方法 os.system(),os.popen(),commands

时间:2016-03-06 14:16:04      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:

转载: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

标签:

原文地址:http://www.cnblogs.com/shilin000/p/5247215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!