Calculator with addition, subtraction, multiplication, division and (n) root functions
Project description
Calculator
Calculator is a Python package for performing addition, subtraction, multiplication, division and n-th root functions on a number stored in calculator's memory. Everytime a function is performed, calculator's memory is updated.
Installation
Use the package manager pip to this calculator as calculator-meluzx==0.0.3.
pip install calculator-meluzx==0.0.6
Usage
To import this package, use the following code.
from calculator_meluzx.calculator_meluzx import Calculator
# activates calculator with initial memory's value
calculator = Calculator()
The initial value stored in calculator's memory is 0. All functions are performed with latest value in calculator's memory and a number, defined in brackets when calling a method. The following code describes a case, in which some prior functions have been performed and latest value in calculator's memory is 2.
# performs 2 + 3, returns 5
calculator.add(3)
# performs 5 - 4, returns 1
calculator.subtract(4)
# performs 1 * 8, returns 8
calculator.multiply(8)
# performs 8 / 2, returns 4
calculator.divide(2)
# performs 4 ** 2, returns 2
calculator.root(2)
Calculator also has reset function, which sets calculator's memory value to 0.
# returns 0
calculator.reset()
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file calculator_meluzx-0.0.6.tar.gz.
File metadata
- Download URL: calculator_meluzx-0.0.6.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
254ad0a787839067af42b5cf10b12f1581803715caa7ab53ae6a94f5d6a0f57a
|
|
| MD5 |
3ac90019e6e98e968c591a8e01a4f77b
|
|
| BLAKE2b-256 |
15b4644d84e9933a044c20cd929bd265637128a5fbd0741d621f5e3ef3c45509
|
File details
Details for the file calculator_meluzx-0.0.6-py3-none-any.whl.
File metadata
- Download URL: calculator_meluzx-0.0.6-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6549fc4d6f97f9c0de5536868ce6201cf643fe604ed2e2c23b3580f7282415ce
|
|
| MD5 |
c27aaf407b63bf0f6191651969bf970c
|
|
| BLAKE2b-256 |
dfc93beda55126949ed65f5e4882ca7cbf60723004d9be5e1fdd63ec391f5a45
|