给出以下整数和计算
from __future__ import division a = 23 b = 45 c = 16 round((a/b)*0.9*c)
这导致:
TypeError: 'int' object is not callable.
如何将输出舍入为整数?
python python-2.7
python ×1
python-2.7 ×1