鱼C论坛

 找回密码
 立即注册
查看: 2586|回复: 3

[技术交流] 新人改编查询天气程序

[复制链接]
发表于 2021-1-20 22:22:18 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
最近看了车王小甲鱼的python教学,在论坛里看到一个查询天气的帖子(https://fishc.com.cn/thread-61808-1-1.html),发现程序没运行完就关闭了窗口,稍微改编了一下,顺便加了朵呲花(
因为没有加附件的权限?¿就直接把代码写下面啦。
import urllib.request
import gzip
import json
import time
print('------天气查询------')
def cihua():
    i = int(input("几秒后关闭窗口?(输入数字)"))
    while i  > 0:
        ending = ["-"*i]
        print(ending)
        ending.pop()
        i = i - 1
        time.sleep(1)
        
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('你输入的城市名有误,或者天气中心未收录你所在城市')
        cihua()
    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 == '是' :
            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'))
            cihua()   
        else:
            cihua()
show_weather(get_weather_data())
#原帖链接
##https://fishc.com.cn/thread-61808-1-1.html
#出处: 鱼C论坛
欢迎指出错误
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-3-6 23:16:18 | 显示全部楼层
最后查询未来4天天气,forecast少了[i]
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-3-11 18:42:10 | 显示全部楼层
云影丶 发表于 2021-3-6 23:16
最后查询未来4天天气,forecast少了

为啥我加上也不行呀
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-3-11 19:11:52 | 显示全部楼层
Z朱国伟 发表于 2021-3-11 18:42
为啥我加上也不行呀

你改错了吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 08:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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