Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

INTRODUCTION TO PROJECT

“BASIC CALCULATOR”

Python as a Calculator
Python can be used as a calculator to compute arithmetic
operations like addition, subtraction, multiplication and
division. Python can also be used for trigonometric calculations
and statistical calculations.

Basic Calculator Python Project

The Python programming language is a great tool to use when


working with numbers and evaluating mathematical
expressions. This quality can be utilized to make useful
programs.
This project presents a learning exercise that outlines how to
make a command-line calculator program in Python 3. This
calculator will be able to perform only basic arithmetic, but the
final step of this guide serves as a starting point for how you
might improve the code to create a more robust calculator.
We’ll be using math operators, variables, conditional
statements, functions, and handle user input to make our
calculator.

Prerequisites
To build this project we will use the basic concept of python and
Arithmetic Operators, Concept of Loops in Python and Condition
Statements.

You might also like