...

/

Project: Safe Division

Project: Safe Division

Practice using try and except to perform safe division and handle user input errors.

We'll cover the following...

Task

Ask the user to enter two numbers and divide them. But if anything goes wrong, show a nice error message instead of crashing.

# Write your code here.
Safely dividing two numbers and handling division by zero and invalid input
    ...