Glossary

The traceback

showing the chain of function calls that led to the error 2. **The location** — file names and line numbers where each call occurred 3. **The error type and value** — `KeyError: 42` tells us a dictionary lookup failed for key `42`

Learn More

Related Terms