Metadata-Version: 2.1
Name: woohoocalc
Version: 0.0.1
Summary: calculator with essential math functions
Home-page: UNKNOWN
Author: David Balsys
Author-email: davidbalsys@gmail.com
License: MIT
Keywords: calculator
Platform: UNKNOWN
License-File: LICENSE.txt

---

Name: woohoocalc

Version: 0.0.1

Description: woohoocalc is a Python package made for performing essential math calculations for everyday use.

Supported Actions:

- Addition
- Multiplication
- Subtraction
- Division
- nth root calculation
- Memory reset
- Print out memory

---
How to install this package:

1. installing via terminal -

pip install woohoocalc

2. installing via IDE -

%pip install woohoocalc

---
How it works:
-

from calculator.calculator import Calculator

new_obj = calc.Calculator()  # New object is created.

new_obj.add(15) # Returns 15.0

new_obj.subtract(5) # Returns 10.0

new_obj.multiply(20) # Returns 200.0

new_obj.divide(2) # Returns 100.0

new_obj.n_root(2) # Returns 10.0

new_obj.return_memory # Returns 10.0

new_obj.memory_reset # Resets memory to 0.0

---

Keywords: calculator, addition, multiplication, subtraction, division, nth root

This project is licensed under the terms of the MIT license.

