在执行涉及数学运算的代码时,可能会遇到错误“TypeError: 'int' object is not callable. ”此错误出现在以下场景中:
a = 23 b = 45 c = 16 result = (a / b) * 0.9 * c
尝试使用 round() 对结果进行舍入时,您可能会收到错误:
TypeError: 'int' object is not callable
要解决此问题并对输出进行舍入为整数,请调查您的代码中是否有类似于以下内容的行:
round = 42
当您使用 round((a / b) * 0.9 * c) 定义 round = 42 后,解释器将其解释为对分配给 round(整数)的对象的函数调用。这会导致错误。
找到并删除将整数分配给 round 变量的代码以纠正问题。此修改确保舍入可调用仍然可用于舍入数学运算的输出,然后可以将其分配给结果变量。
以上是为什么在使用 `round()` 函数时我的代码会抛出'TypeError: \'int\' object is not callable\”?的详细内容。更多信息请关注PHP中文网其他相关文章!