You are on page 1of 8

Project Report

based on
Simple Calculator and Income Tax calculator

Submitted by :-

Name :- Vansh Garg (2210990936)


Vanshika Koli (2210990948)
Varun Dhir (2210990953)

Batch :- 2022-2026
Submitted to :- Dr. Anand Muni Mishra

Page 1
CHITKARA UNIVERSITY
LAB EVALUATION PROJECT
PROJECT DETAILS TEMPLATE
Group Name G-30 / AD-1

Project Title Simple Calculator and Income Tax Calculator

Team Leader Vanshika Koli

Details of Work division


Student/rollno Work / Role Allotted
Vanshika Coding for Income Tax
Koli/2210990948 Calculator
Varun Dhir/2210990953 Made flowchart and
algorithm. Made PPT
also
Vansh Garg/2210990936 Coding for Simple
Calculator

Higher level Approach to be 1. It has been developed in python using


followed: Functions and Conditionals and Loops. You
● Share the details in can also improve the readability of the code by
points providing a better structure to the code using
Tkinter

Lower-level Approach to be 2. The main objective of this project is to help


followed: beginners to be able to visualize the basic
● Share the details in algorithms and get a better understanding of the
points underlying arithmetic operations

Advantage of the project with 1. The project will help user to do simple
applicability: calculations using basic operators.
2. Income Tax calculator will help user to
Highlight the unique feature(s) calculate their income tax depending on their
of the project if any salary.

Schedule for implementing the Deliverable Expected Date of


use case: Completion
● Share the Tentative Date User case 1 1 December 2022
of Completion of User case 2 15 December 2022

Page 2
Expected Deliverables

Future scope of the project 1) The project will help users to save the time in
● Share the details in doing calculations and do the total fast.
points

DOCUMENT HISTORY:
Created By Vansh Garg, Varun Dhir, Vanshika Koli

Approved By Anand Muni Mishra Sir


Month of Creation November 2022

Page 3
CONTENTS

 ABSTRACT

 INTRODUCTION

 SOFTWARE & HARDWARE REQUIREMENT

 PROPOSED WORK

 CONCLUSION

Page 4
INTRODUCTION
In this Program, user will learn to create a simple calculator that can
add, subtract, multiply or divide depending upon the input from the
user.

To understand this program, one should have the knowledge of the


following Python programming topics:

 Python Functions
 Conditionals And Loops
 Basic Arithmetic Operations

We created a Python program that determines the income tax owed on


a specific quantity of money. Please be informed that the income tax
slabs are changed every year. Since income taxes vary from nation to
nation, we have created a program that solely supports the Indian
format and uses India as the country for tax calculation.

Page 5
ABSTRACT

In the Simple calculator program, we ask the user to choose an


operation. Operations +, - , *, and / are valid. If any other input is
given, Invalid Input is displayed and the loop continues until a valid
option is selected. Two numbers are taken and an if... elif...else
branching is used to execute a particular section. User-defined
functions add(), subtract(), multiply() and divide() evaluate respective
operations and display the output.

In the Income Tax calculator program, we will take annual income


from the user as input after that we will pass that data to compare the
Tax slab with different if-else conditions. After comparing we will
calculate the tax and return it to that function to print the calculated
Tax on that Income.

Page 6
SOFTWARE AND HARDWARE REQUIREMENT

SOFTWARES REQUIREMENT: Python


Jupyter Notebook

HARDWARE REQUIREMENT: Modern Operating System


x86 64-bit CPU (Intel/AMD)
4 GB RAM

Page 7
CONCLUSION

A calculator is a device which helps in


making calculations easy. This program
was created in Python Language. The
program gives user to do basic
calculations in no time. It also provides
user to calculate their income tax.

To understand this code, one should have


basic knowledge about Conditionals and
loops and Functions in python.

Page 8

You might also like