Python throws the error, ‘float’ object is not callable when you try to call a float value as function. This happens when you use reserved keywords as your variable name or override library functions with float variables.
For example, round()
is the function which is used to round the number to the nearest integer. Now if we declare a float variable with name round
, then within the scope of that variable, we won’t be able to use round()
function. Check this code –
round = 5.0; round(5 * 3 / 2); // TypeError: 'float' object is not callable.
The above code will throw TypeError: ‘float’ object is not callable.
The solution to this problem is to keep a close eye on your variable names. Avoid using very common names which could match the general functions. Have a little understanding of Math functions and reserved keywords.
Reserved Keywords
You can’t use these keywords as your variable names. So if you try to use them, you will get the error.
and | del | from | not |
while | as | elif | global |
or | with | assert | else |
if | pass | yield | break |
except | import | class | |
exec | in | raise | continue |
finally | is | return | def |
for | lambda | try |