一尘不染

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

python

给定以下整数和计算

from __future__ import division

a = 23
b = 45
c = 16

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

结果是:

TypeError: 'int' object is not callable.

如何将输出舍入为整数?


阅读 804

收藏
2020-02-20

共1个答案

一尘不染

给定以下整数和计算

from __future__ import division

a = 23
b = 45
c = 16

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

结果是:

TypeError: 'int' object is not callable.

如何将输出舍入为整数?

2020-02-20