tem_max_hour = hour[tem.index(tem_max)] # 求最高温度 ValueError: 31.0 is not in list
时间: 2024-03-01 13:56:16 浏览: 114
keras报错:ValueError: Cannot create group in read only mode
5星 · 资源好评率100%
这个错误通常是由于 `tem_max` 变量中存储的数值不在 `tem` 列表中导致的。请检查 `tem_max` 和 `tem` 的值,确保两个变量中的数值是一致的。另外,你还可以在使用 `index` 函数之前,先使用 `in` 运算符检查 `tem_max` 是否在 `tem` 中,以避免类似的错误。例如:
```
if tem_max in tem:
tem_max_hour = hour[tem.index(tem_max)]
else:
# 处理 tem_max 不在 tem 中的情况
```
阅读全文