Challenge: Handle `DivideByZero` Exception
Can we handle the `DivideByZero` exception using `try` and `catch`/`except`?
We'll cover the following...
Problem Statement
Divide an integer
by 0
and handle the Divide by zero
exception by ...