Python-TypeError:“ int”对象不可调用

给定以下整数和计算

from __future__ import division

a = 23

b = 45

c = 16

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

结果是:

TypeError: 'int' object is not callable.

如何将输出舍入为整数?

回答:

给定以下整数和计算

from __future__ import division

a = 23

b = 45

c = 16

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

结果是:

TypeError: 'int' object is not callable.

如何将输出舍入为整数?

以上是 Python-TypeError:“ int”对象不可调用 的全部内容, 来源链接: utcz.com/qa/429345.html

回到顶部