You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 24, 2025. It is now read-only.
###📌 Problem
When using the calculator script, the program crashes if the user tries to divide by zero.
💥 Steps to Reproduce
❗Actual Behavior
Program crashes with a
ZeroDivisionError.✅ Expected Behavior
The script should catch this error and show a user-friendly message like:
"Error: You cannot divide by zero."
🛠️ Suggested Fix
Wrap the division operation in a try-except block to catch
ZeroDivisionError.