FloatingPointErrorFloatingPointError
A floating point operation failed. Rarely seen unless fpectl is enabled.
TypeError: object is not callableAn object that is not a function was called with parentheses ().
You used parentheses on a non-callable object. This happens when a variable shadows a function name (e.g., str = 'hello'; str(42)), accessing a property instead of a method, or accidentally overwriting a function.
Check that the variable has not been reassigned from a function to a value. Rename variables that shadow built-in functions. Use callable(obj) to check before calling. Restart the interpreter if you shadowed a built-in.
x = 5; x() # TypeError: 'int' object is not callableFloatingPointErrorA floating point operation failed. Rarely seen unless fpectl is enabled.
LookupErrorBase class for errors raised when a key or index is not found (KeyError, IndexError).
IOErrorAn I/O operation failed. IOError is an alias for OSError in Python 3.
FutureWarningA warning about behavior that will change in a future version.
TabErrorIndentation uses an inconsistent mix of tabs and spaces.
NameErrorA local or global name was referenced that has not been defined.