Python Calculator Project Report (1)
Python Calculator Project Report (1)
1. Introduction
This project is a simple command-line based calculator developed using Python. It performs
basic arithmetic operations such as addition, subtraction, multiplication, and division. The
objective was to strengthen programming fundamentals and understand the application of
control structures and exception handling.
2. Objective
The main goal of the project is to build a working calculator using Python that takes user
input and processes the desired arithmetic operations with proper validation and error
handling.
4. Features
- Performs Addition, Subtraction, Multiplication, and Division
- User-friendly input interface
- Handles division by zero error
- Simple and clean code structure
5. Implementation Overview
The calculator takes two numeric inputs from the user and then allows them to select an
operation. Using if-else conditions and try-except blocks, the calculator performs the
required operation and displays the result. Exception handling is used to manage invalid
inputs and division by zero errors.
6. Conclusion
This project helped me gain confidence in writing Python code, using conditional
statements, loops, and exception handling. It was a valuable learning experience to
understand how real-time inputs and validations are handled in basic applications.