Metadata-Version: 2.1
Name: calculator_gkukse
Version: 0.0.1
Summary: A calculator package
Author-email: gkukse <gintare.kuksenaite@gmail.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Project-URL: Homepage, https://github.com/TuringCollegeSubmissions/gkukse-DWWP.1

# About the package

my_calculator.py is cource code for a Python Package calculator, which performs math task: Addition, Subtraction, Multiplication, Division, (n) root of a number, Reset memory. The Functions take in floats or integers as arguments and return the sum of operations until asked to reset memory.

testing.py is a test code aimed to my_calculator.py

Here's an example of functions
'''
calculator.Addition(4)
>>4.0
calculator.Subtraction(1)
>>3.0
calculator.Multiplication(9)
>>27.0
calculator.Division(3)
>>9.0
calculator.Root(2)
>>3.0
calculator.Reset_memory()
>>0.0
'''

# Getting Setup
1. Install Python 3.6.1 or later from https://www.python.org
2. install the Calculator package:
'''
pip install calculator_gkukse
'''
