Contribute Media
A thank you to everyone who makes this possible: Read More

How to read a traceback in Python

Description

When exceptions go unhandled, Python prints a traceback. Tracebacks are read from the bottom upward. The last line describes what happened and lines above describe where it happened.

Details

Improve this page