怎么解决ould not convert string to float: '27,780
时间: 2023-10-18 18:31:11 浏览: 111
解决Could not get resource 最笨最实用的方法
出现这个错误的原因是因为字符串 "27,780" 中的逗号使得它不能被正确解析为浮点数。解决这个问题的方法是去掉字符串中的逗号,然后再将其转换为浮点数。可以使用 Python 中的 `replace()` 函数去掉逗号,如下所示:
```
string = "27,780"
string_without_comma = string.replace(",", "")
float_number = float(string_without_comma)
```
这样就可以将字符串 "27,780" 转换为浮点数 27780.0。
阅读全文