Metadata-Version: 2.1
Name: pythonmastery-adomas
Version: 0.0.6
Summary: Python Mastery
Author: Adomas Valiukevicius
Author-email: <adomasval08@gmail.com>
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
License-File: LICENSE

# Python Mastery @ Turing College

In order to install the package use:
`pip install pythonmastery-adomas`

To import the class Calculator from calculator module use this import:
`from mastery.calculator import Calculator`

### Calculator has multiple features:
    - Addition
    - Substraction
    - Multiplication
    - Division
    - nth root of a number.
    - Reset memory


### Suppose you've made a calculator object from the class
`calculator = Calculator()` 

Addition:
    `calculator.add(_value_)`
Substraction:
    `calculator.substract(_value_)`
Multiplication:
    `calculator.multiply(_value_)`
Division:
    `calculator.divide(_value_)`
Root of nth:
    `calculator.root(_n_)`
Reset memory:
    `calculator.reset()`

