Metadata-Version: 2.1
Name: basic-calculator-101
Version: 1.3
Summary: Calculator with basic functions: Add, Subtract, Multiply, Divide, Nth-root, ability to reset to 0
Home-page: https://github.com/Ifyokoh/calculator
Author: Ifeoma Okoh
Author-email: odibest1893@gmail.com
License: MIT
Keywords: calculator
Platform: UNKNOWN
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3

Basic Calculator
-------------------

Installation
----------------

to use the package in your notebook:

``!pip install basic-calculator-101==1.3``

``from calculator.calculator import Calculator``


Usage
--------

- calculator = Calculator()

- Addition: calculator.add(6)
- Subtraction: calculator.subtract(3)
- Multiplication: calculator.multiply(2)
- Division: calculator.divide(5)
- Take (n) root of number: calculator.nth_root(16)
- Memory of last result: calculator.reset_memory()


