🧮 Basic Calculator Using Python (Exception Handling) 📌 Project Description
This project is a simple Python-based calculator designed for beginners. It performs basic arithmetic operations such as addition, subtraction, multiplication, and division. The main goal of this project is to demonstrate the use of exception handling in Python to manage runtime errors gracefully.
🎯 Objectives
Practice basic Python syntax
Understand if-elif-else conditions
Learn how try-except works
Handle common errors like invalid input and division by zero
⚙️ Features
Takes user input for two numbers
Supports four arithmetic operations
Handles invalid numeric input using ValueError
Prevents program crash on division by zero using ZeroDivisionError
Beginner-friendly and easy to understand
🛠️ Technologies Used
Language: Python
Concepts:
Exception Handling (try-except)
Conditional Statements
User Input