首页 >后端开发 >Python教程 >为什么我收到 `round()` 的 \'TypeError: \'int\' object is not callable\' 错误?

为什么我收到 `round()` 的 \'TypeError: \'int\' object is not callable\' 错误?

Susan Sarandon
Susan Sarandon原创
2024-12-04 13:40:10989浏览

Why Am I Getting a

对象调用错误:“int”不可调用

提供的代码片段:

a = 23
b = 45
c = 16

round((a/b)*0.9*c)

遇到 TypeError : 'int' 对象不可调用。

此错误表明round() 函数未被识别为可调用对象。这是因为代码中的另一个变量或值已被分配给名称 round,从而覆盖了内置的 round() 函数。

此问题的根本原因是程序中其他位置的代码分配了int 转 round,例如:

round = 42

当您调用 round((a/b)0.9c) 时,它会尝试调用int 值 round 上的函数,该函数不可调用。

要解决此问题,请找到分配 int 进行舍入的代码,然后删除或修改该分配。这会将内置 round() 函数恢复到正确的绑定。

以上是为什么我收到 `round()` 的 \'TypeError: \'int\' object is not callable\' 错误?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn