plt.text(str(tem_max_hour) + 0.15, str(tem_max) + 0.15, str(tem_max), ha='center', va='bottom', fontsize=10.5) # 标出最高温度 TypeError: can only concatenate str (not "float") to str
时间: 2023-11-26 13:17:52 浏览: 78
Trans2Plt.rar_c++ tecplot_tecplot
这个错误是由于你试图将一个字符串和一个浮点数相加而导致的。 `plt.text()` 函数的第一个和第二个参数应该是浮点数类型的坐标值,但你在这里使用了 `str(tem_max_hour) + 0.15` 和 `str(tem_max) + 0.15`,这会将 `str(tem_max_hour)` 和 `str(tem_max)` 的结果与 `0.15` 相加,从而导致类型错误。
为了解决这个问题,你应该先将 `tem_max_hour` 和 `tem_max` 转换为字符串类型,然后再将它们与浮点数进行相加。例如:
```
plt.text(float(str(tem_max_hour)) + 0.15, float(str(tem_max)) + 0.15, str(tem_max), ha='center', va='bottom', fontsize=10.5)
```
在这里,我将 `tem_max_hour` 和 `tem_max` 转换为字符串类型,然后使用 `float()` 函数将它们转换为浮点数类型,最后再将它们与 `0.15` 相加。注意,在这里只需要对 `tem_max_hour` 和 `tem_max` 进行类型转换,不需要对 `0.15` 进行转换,因为它已经是浮点数类型的。
阅读全文