AttributeError: 'float' object has no attribute 'round'
时间: 2023-07-14 20:57:39 浏览: 229
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常是因为你尝试在一个浮点数上调用 round() 函数,但是该对象上没有 round() 属性。这可能是因为你将一个普通的数字或其他类型的对象传递给了 round() 函数。
如果你想四舍五入一个浮点数,你可以使用内置的 round() 函数并指定所需的精度。例如,round(3.14159, 2) 将返回 3.14。如果你想要更多控制,你可以使用 Decimal 类型来进行精确的舍入操作。
阅读全文