Exam-style question
Try this first
In Python, which block contains code that responds if an exception occurs in the associated try block?.
- A.except
- B.respond
- C.error
- D.catching
Model answer
What a good answer should say
- except
Explanation
Why this works
An except block provides the response to an exception raised while the related try block is being executed.
Common mistake
No common mistake is linked to this question yet.
