根据float和string的Python错误

时间:2014-05-23 11:06:14

标签: python

我的代码:

total = total + array[idx]

我收到了这个错误:

unsupported operand type(s) for +: 'float' and 'str' 

如何解决此错误?

1 个答案:

答案 0 :(得分:1)

您正在尝试以数学方式将字符串添加到浮点数。您应该首先将字符串转换为浮点数:

total = total + float(array[idx])