Skip to content

MattithyahuData/simplemathutils-lib

Repository files navigation


Create useful projects using simplemathutils-lib functions

simplemathutils-lib

Downloads platform release Python-Version issues PyPI - Status License Stack Overflow

About

simplemathutils-lib is a creative package for basic mathematical operations with Python.

All simplemathutils-lib wheels distributed on pypi are MIT licensed.

Requirements

simplemathutils-lib requires python 3.6 or greater.

Installation

Install with pip:

pip install simplemathutils-lib

If you are using the old version of simplemathutils-lib and want to update it:

pip install --upgrade simplemathutils-lib

Examples

import simplemathutils_lib as simplemath

simplemath.add(10,2,1) 
# Output: 13

simplemath.subtract(2,1)
# Output: 1

simplemath.multiply(10,2,1)
# Output: 20

simplemath.divide(2,1)
# Output: 2

Contribute

Feel free to open pull requests to expand this documentation, add features or fix problems.