Metadata-Version: 2.4
Name: kanchan-the-calculator
Version: 1.0.1
Author-email: kanchan timalsina  <kanchantimalsina666@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# kanchan Calculator

A fully functional calculator by kanchan timalsina  with history tracking.

## Installation

pip install kanchan-the-calculator

## Python Usage

from kanchan_the_calculator import Calculator

calc = Calculator()
print(calc.add(5, 3))           # 8
print(calc.subtract(10, 4))     # 6
print(calc.multiply(3, 7))      # 21
print(calc.divide(20, 4))       # 5.0
print(calc.power(2, 8))         # 256p
print(calc.square_root(81))     # 9.0
print(calc.percentage(200, 15)) # 30.0
print(calc.absolute(-42))       # 42
calc.print_history()            # shows all past operations

## Command Line

kanchan_calc
