This is a simple calculator that takes two numbers and either adds,subtract, multiply and divide them.
pip3 install kcalculatorNote
:-It basicly perform on addition, subtraction, multiply or divide operations.for Now it perform only basic operation.
This is an example of addition of two numbers.
Ex: - a +b 2+3 = 5
How to use this package
from calc import calc
print(calc.Number.add_numberes(4,5))
This package works for only add_numbers, subtact_numbers, multy_numbers, divide_numbers
Ex- If you want to multiply two numbers.
from calc import calc
print(calc.Number.multy_numbers(4,5))