手机
当前位置:查字典教程网 >脚本专栏 >python >python显示天气预报
python显示天气预报
摘要:复制代码代码如下:importurllib2importjsonimportstringurl='http://m.weather.com....

复制代码 代码如下:

import urllib2

import json

import string

url ='http://m.weather.com.cn/data/101090502.html'

re = urllib2.urlopen(url).read()

we = json.loads(re)['weatherinfo']

print we['city'] , we['date_y'].center(30) , we['week']

print we['temp1'], we['weather1'].center(30), we['wind1']

print we['temp2'], we['weather2'].center(30), we['wind2']

print we['temp3'], we['weather3'].center(30), we['wind3']

print we['temp4'], we['weather4'].center(30), we['wind4']

print we['temp5'], we['weather5'].center(30), we['wind5']

print we['temp6'], we['weather6'].center(30), we['wind6']

print we['index48_d']

raw_input('plese input Enter to esc')

【python显示天气预报】相关文章:

python删除文件示例分享

python的urllib模块显示下载进度示例

python调用shell的方法

python求素数示例分享

使用cx_freeze把python打包exe示例

python 控制语句

python实现360的字符显示界面

python动态加载变量示例分享

Python 除法小技巧

Python中文编码那些事

精品推荐
分类导航