给定以下整数和计算
from __future__ import divisiona = 23b = 45c = 16round((a/b)*0.9*c)
结果是:
TypeError: 'int' object is not callable.
如何将输出舍入为整数?

给定以下整数和计算
from __future__ import divisiona = 23b = 45c = 16round((a/b)*0.9*c)
结果是:
TypeError: 'int' object is not callable.
如何将输出舍入为整数?