zoukankan      html  css  js  c++  java
  • 天气查询(源代码)

    import urllib.request
    import gzip
    import json
    print('------天气查询------')
    def get_weather_data() :
    city_name = input('请输入要查询的城市名称:')
    url1 = 'http://wthrcdn.etouch.cn/weather_mini?city='+urllib.parse.quote(city_name)
    url2 = 'http://wthrcdn.etouch.cn/weather_mini?citykey=101010100'
    #网址1只需要输入城市名,网址2需要输入城市代码
    #print(url1)
    weather_data = urllib.request.urlopen(url1).read()
    #读取网页数据
    weather_data = gzip.decompress(weather_data).decode('utf-8')
    #解压网页数据
    weather_dict = json.loads(weather_data)
    #将json数据转换为dict数据
    return weather_dict

    def show_weather(weather_data):
    weather_dict = weather_data
    #将json数据转换为dict数据
    if weather_dict.get('desc') == 'invilad-citykey':
    print('你输入的城市名有误,或者天气中心未收录你所在城市')
    elif weather_dict.get('desc') =='OK':
    forecast = weather_dict.get('data').get('forecast')
    print('城市:',weather_dict.get('data').get('city'))
    print('温度:',weather_dict.get('data').get('wendu')+'℃ ')
    print('感冒:',weather_dict.get('data').get('ganmao'))
    print('风向:',forecast[0].get('fengxiang'))
    print('风级:',forecast[0].get('fengli'))
    print('高温:',forecast[0].get('high'))
    print('低温:',forecast[0].get('low'))
    print('天气:',forecast[0].get('type'))
    print('日期:',forecast[0].get('date'))
    print('*******************************')
    four_day_forecast =input('是否要显示未来四天天气,是/否:')
    if four_day_forecast == '是' or 'Y' or 'y':
    for i in range(1,5):
    print('日期:',forecast[i].get('date'))
    print('风向:',forecast[i].get('fengxiang'))
    print('风级:',forecast[i].get('fengli'))
    print('高温:',forecast[i].get('high'))
    print('低温:',forecast[i].get('low'))
    print('天气:',forecast[i].get('type'))
    print('--------------------------')
    print('***********************************')
    input("Prease <enter>")
    show_weather(get_weather_data())

    查询结果如图:

  • 相关阅读:
    树形dp--P2014 [CTSC1997]选课
    背包变形--P1759 通天之潜水
    区间dp--P1880 [NOI1995]石子合并
    动态规划--P2758 编辑距离
    筛法--CF449C Jzzhu and Apples
    BZOJ3998: [TJOI2015]弦论(后缀自动机,Parent树)
    BZOJ3530: [Sdoi2014]数数(Trie图,数位Dp)
    BZOJ1444: [Jsoi2009]有趣的游戏(Trie图,矩乘)
    BZOJ1195: [HNOI2006]最短母串(Trie图,搜索)
    BZOJ3238: [Ahoi2013]差异(后缀数组)
  • 原文地址:https://www.cnblogs.com/nnty/p/9897093.html
Copyright © 2011-2022 走看看