Anthony N. answered 02/16/23
Software Engineer available to tutor
Hello!
You'll want to define the function with a name of your choosing. Let's use `divideTwoNums()`
Then you'll want to pass in two arguments into the function and use them to attempt the division.
Let's call them `firstNum` and `secondNum`.
The try-block will attempt the division and return the result if successful.
The except-block will catch specifically the ZeroDivisionError type and do a print statement if it catches that error type.
Below is how you can start it: