2.os.popen() 功能强于os.system() , os.popen() 可以返回回显的内容,以文件描述符返回。
eg:
t_f = os.popen ("ping 192.168.1.1")
print t_f.read()
或者:
for line in os.popen("dir"):
print line
os.system() 和os.popen()的区别
返回的数据不同
1 os.system(“ls") 返回0
但是这样是无法获得到输出和返回值的
继续 Google,之后学会了 os.popen()。 view sourceprint?
a... output = os.popen('cat /proc/cpuinfo')
b... print output.read()
本文转自 Tenderrain 51CTO博客,原文链接:http://blog.51cto.com/tenderrain/1588862