Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumPythonexception chainingSingle-choice MCQ

When an exception is raised inside an `except` block WITHOUT a `from` clause, how does Python record the relationship to the original exception?

try: try: 1 / 0 except ZeroDivisionError: raise ValueError("oops") except ValueError as v: ...