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

After this code runs, what is the value of `__suppress_context__` on the caught exception, and is its `__context__` set?

try: try: 1 / 0 except ZeroDivisionError: raise ValueError("clean") from None except ValueError as v: ...