Python执行系统命令并获得输出的几种方法
来源:岁月联盟
时间:2012-02-06
import os
p = os.popen('uptime')
x=p.read()
print x
方法二:
import subprocess
res = subprocess.Popen('uptime',shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE,close_fds=True)
result = res.stdout.readlines()
作者 小兔齐齐
上一篇:python学习备忘录--1
下一篇:一分钟学会Django的表单