If you have a variable called exit you've overwritten the function in that scope, and won't be able to execute it.
e.g.
>>> exit=1
>>> exit()
Traceback (most recent call last):
File "", line 1, in
TypeError: 'int' object is not callable
>>>
If you have a variable called exit you've overwritten the function in that scope, and won't be able to execute it.
e.g.
>>> exit=1
>>> exit()
Traceback (most recent call last):
File "", line 1, in
TypeError: 'int' object is not callable
>>>