python显示天气预报

Helen ·
更新时间:2024-11-10
· 617 次阅读

代码如下:
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实现从百度API获取天气的方法python解析中国天气网的天气数据Python爬虫天气预报实例详解(小白入门)Python爬取国外天气预报网站的方法python结合API实现即时天气信息Python爬虫实例扒取2345天气预报基于Python实现定时自动给微信好友发送天气预报python3爬取各类天气信息Python实战之制作天气查询软件



天气预报 天气 Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号