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