Skip to main content
✏️ Code CompletionPY Python Medium+20 XP

Exception Handling

Complete the error handling pattern.

✏️ Fill in the blank
try:
    result = 10 / 0
___ ZeroDivisionError:
    print("Cannot divide by zero")

✏️ Type the missing code: