【python】 'float'object is not iterable

这个错误遇到得太多了,这次是因为企图直接将'float' object转换为list:

total_energys.append(list(total_energy))

这里的total_energy的类型就是float。

直接将其append就行:

total_energys.append(total_energy)

 

你可能感兴趣的:(机器学习,Bug记录)