标签: python
我的代码:
total = total + array[idx]
我收到了这个错误:
unsupported operand type(s) for +: 'float' and 'str'
如何解决此错误?
答案 0 :(得分:1)
您正在尝试以数学方式将字符串添加到浮点数。您应该首先将字符串转换为浮点数:
total = total + float(array[idx])