下面是上海某一周各天的最高和最低气温(单位为摄氏度)。其中,第一行为最高温,第二行为最低温。最高温 13 13 18 18 19 15 16最低温 5 7 10 13 11 8 9编程,找出这一周中第几天最热(按最高温度计算),最高多少度。这一周中第几天最冷(按最低温度计算),最低多少度。求出全周各天的平均气温。假设在气象意义上,入春的标准是连续5天日平均气温超过10℃,根据这一周的气象数据是否能判断上海已经入春?
1条回答 默认 最新
- 梦里逆天 2022-10-24 08:46关注
high_temp = [int(i) for i in input().strip().split()] low_temp = [int(i) for i in input().strip().split()] max_temp = max(high_temp) # 最高温 max_temp_index = 0 min_temp = min(low_temp) # 最低温 min_temp_index = 0 for i in range(len(high_temp)): if high_temp[i] == max_temp: max_temp_index = i+1 if low_temp[i] == min_temp: min_temp_index = i+1 # 各天平均气温 avg_temp = [(high_temp[i] + low_temp[i]) * 1.0 / 2 for i in range(len(high_temp))] flag = False for i in range(0, 3): if avg_temp[i] >= 10.0 and avg_temp[i + 1] >= 10.0 and avg_temp[i + 2] >= 10.0 and avg_temp[i + 3] >= 10.0 and \ avg_temp[i + 4] >= 10.0: flag = True print(f"第{max_temp_index}天最热,最高{max_temp}度") print(f"第{min_temp_index}天最冷,最低{min_temp}度") print(f"全周各天气温:{' '.join(map(str, avg_temp))}") print("是否入春:{}".format(flag)) """ 13 13 18 18 19 15 16 5 7 10 13 11 8 9 第5天最热,最高19度 第1天最冷,最低5度 全周各天气温:9.0 10.0 14.0 15.5 15.0 11.5 12.5 是否入春:True """
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用
悬赏问题
- ¥20 全书网Java爬取数据
- ¥15 SAP HANA SQL Script 。SUM OVER 怎么加where
- ¥15 怎么获取红包封面的原始链接,并且获取红包封面序列号
- ¥100 微信小程序跑脚本授权的问题
- ¥60 为什么使用python对地震数据进行umap降维后,数据成图会出现不连续的现象
- ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
- ¥15 STM32串口接收问题
- ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
- ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
- ¥15 安卓qpython向ksweb服务器post文件失败