Given the following integers and calculation
JavaScript
x
8
1
from __future__ import division
2
3
a = 23
4
b = 45
5
c = 16
6
7
round((a/b)*0.9*c)
8
This results in:
JavaScript
1
2
1
TypeError: 'int' object is not callable.
2
How can I round the output to an integer?
Advertisement
Answer
Somewhere else in your code you have something that looks like this:
JavaScript
1
2
1
round = 42
2
Then when you write
JavaScript
1
2
1
round((a/b)*0.9*c)
2
that is interpreted as meaning a function call on the object bound to round
, which is an int
. And that fails.
The problem is whatever code binds an int
to the name round
. Find that and remove it.