TypeError: object is not callableTypeError: object is not callable
An object that is not a function was called with parentheses ().
RuntimeErrorA generic runtime error that does not fall into any other category.
An error occurred during execution that does not fit other exception categories. Common examples: modifying a dictionary/set during iteration, event loop already running (asyncio), or generator raised StopIteration internally.
Read the error message for the specific cause. For dict/set modification during iteration, iterate over a copy: list(dict.items()). For asyncio issues, use nest_asyncio or restructure your async code.
TypeError: object is not callableAn object that is not a function was called with parentheses ().
AssertionErrorAn assert statement failed because the condition evaluated to False.
TypeError: object is not iterableAn object that does not support iteration was used in a for loop, unpacking, or other iterable context.
EOFErrorThe input() function or raw_input() hit end-of-file without reading any data.
asyncio.TimeoutErrorAn asyncio operation exceeded its timeout.
Model.DoesNotExistA Django ORM query with .get() did not find a matching record.