加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python显示天气预报

发布时间:2020-12-17 07:27:48 所属栏目:Python 来源:网络整理
导读:复制代码 代码如下: 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 w

复制代码 代码如下:

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定时利用QQ邮件发送天气预报的实例
  • Python爬取国外天气预报网站的方法
  • Python天气预报采集器实现代码(网页爬虫)
  • Python爬虫实例扒取2345天气预报

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读