会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
dwtfukgv
博客园
首页
新随笔
联系
管理
订阅
python 获取命令行中的输出
import os
command = 'ping www.baidu.com '
#可以直接在命令行中执行的命令
r = os.popen(command)
#执行该命令
info = r.readlines()
#读取命令行的输出到一个list
for line in info:
#按行遍历
line = line.strip('\r\n')
print line
posted on
2017-07-07 09:52
dwtfukgv
阅读(
160
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部