Traceback in Python
What is the traceback and what does it contain?
Answer
A traceback is the error report Python prints when an exception is raised.
It contains:
the exact line where the exception occurred
the error message (error type + short description)