gpt4 book ai didi

python - 值错误 : could not convert string to float: '−4.0'

转载 作者:太空宇宙 更新时间:2023-11-04 07:54:37 25 4
gpt4 key购买 nike

为什么是:

print([float(a.get_text()) for a in cb.ax.xaxis.get_ticklabels()])

给我:

ValueError: could not convert string to float: '−4.0'

其中 cb 是 ColorBar 的实例

最佳答案

粘贴您的文本:

>>> a = "−4.0"
>>> ord(a[0])
8722
>>> ord("-")
45
>>>

您在您的代码或界面中粘贴了“错误的”连字符/减号字符(一些替代的稍长的 unicode 字符)。 Python 无法解析它。

关于python - 值错误 : could not convert string to float: '−4.0' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50529246/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com