Answer
In the given code there is an except block for both ArithmeticError and ZeroDivisionError but ZeroDivisionError is already covered in ArithmeticError and the except block of ZeroDivisionError will never be executed.
Work Step by Step
Same as above.