吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 5486|回复: 38
收起左侧

[Python 转载] python3.7查询天气(小白)

  [复制链接]
宇longer 发表于 2018-11-19 22:37
[Python] 纯文本查看 复制代码
# -*- coding: utf-8 -*-

import urllib.request

import json
import gzip

cityname = input('请输入你想查询的城市:\n')


#访问的url,其中urllib.parse.quote是将城市名转换为url的组件
url = 'http://wthrcdn.etouch.cn/weather_mini?city='+urllib.parse.quote(cityname)


#发出请求并读取到weather_data
weather_data = urllib.request.urlopen(url).read()

#以utf-8的编码方式解压数据
weather_data = gzip.decompress(weather_data).decode('utf-8')

#将json数据转化为dict数据
weather_dict = json.loads(weather_data)

if weather_dict.get('desc') == 'invilad-citykey':
   print("输入的城市名错误")
   
elif weather_dict.get('desc') =='OK' :
   forecast = weather_dict.get('data').get('forecast')

   startoday = '城市:'+weather_dict.get('data').get('city') +'\n' \
             +'日期:'+forecast[0].get('date') + '\n'\
             +'温度:'+weather_dict.get('data').get('wendu') + '℃\n' \
             +'高温:'+forecast[0].get('high') + '℃\n' \
             +'低温: '+forecast[0].get('low') + '℃\n' \
             +'风向:'+forecast[0].get('fengxiang') +'\n'\
             +'风力:'+forecast[0].get('fengli') + '\n'\
             +'天气:'+forecast[0].get('type') + '\n'\
             +'感冒:'+weather_dict.get('data').get('ganmao') + '\n'

   one_day    ='日期:'+forecast[1].get('date')+'\n' \
              +'天气:'+forecast[1].get('type')+'\n'\
              +'高温:'+forecast[1].get('high')+'\n'\
              +'低温:'+forecast[1].get('low')+'\n'\
              +'风向:'+forecast[1].get('fengxiang')+'\n'\
              +'风力:'+forecast[1].get('fengli')+'\n'

   two_day   = '日期:' + forecast[2].get('date') + '\n' \
             + '天气:' + forecast[2].get('type') + '\n' \
             + '高温:' + forecast[2].get('high') + '\n' \
             + '低温:' + forecast[2].get('low') + '\n' \
             + '风向:' + forecast[2].get('fengxiang') + '\n' \
             + '风力:' + forecast[2].get('fengli') + '\n'

   three_day = '日期:' + forecast[3].get('date') + '\n' \
             + '天气:' + forecast[3].get('type') + '\n' \
             + '高温:' + forecast[3].get('high') + '\n' \
             + '低温:' + forecast[3].get('low') + '\n' \
             + '风向:' + forecast[3].get('fengxiang') + '\n' \
             + '风力:' + forecast[3].get('fengli') + '\n'

   four_day  = '日期:' + forecast[4].get('date') + '\n' \
             + '天气:' + forecast[4].get('type') + '\n' \
             + '高温:' + forecast[4].get('high') + '\n' \
             + '低温:' + forecast[4].get('low') + '\n' \
             + '风向:' + forecast[4].get('fengxiang') + '\n' \
             + '风力:' + forecast[4].get('fengli') + '\n'

   print(one_day)
   print(two_day)
   print(three_day)
   print(four_day)


免费评分

参与人数 6吾爱币 +5 热心值 +6 收起 理由
fch + 1 热心回复!
lixinmingo + 1 + 1 用心讨论,共获提升!
AaronChao + 1 + 1 用心讨论,共获提升!
zibo2016 + 1 + 1 我很赞同!
东哲他爹 + 1 + 1 我很赞同!
Pear + 1 + 1 用心讨论,共获提升!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

HLT 发表于 2018-11-19 23:38
本帖最后由 HLT 于 2018-11-19 23:40 编辑

句首把tab全部换成四个空格才能运行成功   可能是3.7和3.6的区别

QQ截图20181119234006.jpg
lkq313095929 发表于 2018-12-29 13:20

我也只小小白 ,但是,但是你写的代码真心不错,之前我测试好多,都不太好使。就你这个最好了。15010785897    回头加我微信 ,备注下啊。
头像被屏蔽
沐雨红尘 发表于 2018-11-19 22:56
sharokku4869 发表于 2018-11-19 23:02
加油,共同学习进步!
bigDreamer_ 发表于 2018-11-19 23:02
哈哈,不错
Pear 发表于 2018-11-19 23:02
加油~共同进步
彩虹小马 发表于 2018-11-19 23:06
看不懂 但还是支持下
94dongge 发表于 2018-11-20 00:03
加油 感谢分享
baige52500 发表于 2018-11-20 00:05
楼上的哥厉害啊
余生孤独 发表于 2018-11-20 00:20
每次一看编程教程就犯困的我....
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-16 00:53

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表