0% found this document useful (0 votes)
1 views1 page

Python Calculator Project Report (1)

The project report details the development of a basic command-line calculator using Python, focusing on arithmetic operations and error handling. It highlights the use of Visual Studio Code on Windows and emphasizes the importance of programming fundamentals. The project enhanced the author's skills in Python coding, particularly in managing user inputs and exceptions.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views1 page

Python Calculator Project Report (1)

The project report details the development of a basic command-line calculator using Python, focusing on arithmetic operations and error handling. It highlights the use of Visual Studio Code on Windows and emphasizes the importance of programming fundamentals. The project enhanced the author's skills in Python coding, particularly in managing user inputs and exceptions.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Project Report

Basic Calculator Using Python

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.

3. Tools and Technologies Used


- Programming Language: Python
- Platform: Windows
- Tool: Visual Studio Code (VS Code)

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.

You might also like