宇longer 发表于 2018-11-19 22:37

python3.7查询天气(小白)

# -*- 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.get('date') + '\n'\
             +'温度:'+weather_dict.get('data').get('wendu') + '℃\n' \
             +'高温:'+forecast.get('high') + '℃\n' \
             +'低温: '+forecast.get('low') + '℃\n' \
             +'风向:'+forecast.get('fengxiang') +'\n'\
             +'风力:'+forecast.get('fengli') + '\n'\
             +'天气:'+forecast.get('type') + '\n'\
             +'感冒:'+weather_dict.get('data').get('ganmao') + '\n'

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

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

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

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

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


HLT 发表于 2018-11-19 23:38

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

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

lkq313095929 发表于 2018-12-29 13:20

宇longer 发表于 2018-12-25 17:32
我是小小白

我也只小小白 ,但是,但是你写的代码真心不错,之前我测试好多,都不太好使。就你这个最好了。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

楼上的哥厉害啊{:1_893:}

余生孤独 发表于 2018-11-20 00:20

每次一看编程教程就犯困的我....
页: [1] 2 3 4
查看完整版本: python3.7查询天气(小白)