int' object is not callable python
"""
In python, do not use the same name
for an int and a function as this
would result in "int" object
is not callable error
"""
# int variable called foo
foo = 34
# trying to use foo as method
# results in int object not callable error
foo()