A math package of python 3. ๐
Project description
math_package_xgqfrms
A math package of python 3. ๐
This package includes math methods: addition, subtraction, multiplication and division.
PyPI
https://pypi.org/user/xgqfrms/
https://pypi.org/project/math_package_xgqfrms/
GitHub
Project tree
# math_package_project
$ tree
.
โโโ LICENSE
โโโ README.md
โโโ dist
โ โโโ math_package_xgqfrms-0.0.2-py3-none-any.whl
โ โโโ math_package_xgqfrms-0.0.2.tar.gz
โโโ pyproject.toml
โโโ src
โ โโโ math_package_xgqfrms
โ โโโ __init__.py
โ โโโ math.py
โโโ tests
โโโ demo.py
โโโ test.py
Examples
- add
import math_package_xgqfrms as Math
n1 = 1
n2 = 2
sum = Math.add(n1, n2)
print("sum =", sum)
# sum = 3
- sub
import math_package_xgqfrms as Math
n1 = 3
n2 = 1
minus = Math.sub(n1, n2)
print("minus =", minus)
# minus = 2
- mul
import math_package_xgqfrms as Math
n1 = 2
n2 = 3
multi = Math.mul(n1, n2)
print("multi =", multi)
# multi = 6
- div
import math_package_xgqfrms as Math
n1 = 6
n2 = 2
divide = Math.div(n1, n2)
print("divide =", divide)
# div = 3.0
Project details
Release history Release notifications | RSS feed
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 math_package_xgqfrms-0.0.2.tar.gz.
File metadata
- Download URL: math_package_xgqfrms-0.0.2.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a162a318b34fe8cb814152976c9907cea7f1f972df240b3d97c2d9f1cb8fa89f
|
|
| MD5 |
66ba183cfefc88e31056fb2558dc02e9
|
|
| BLAKE2b-256 |
25a1493d3d9fa8de21ba1c94877d704a1b2812c19f822eb36b91034c00e7f36a
|
File details
Details for the file math_package_xgqfrms-0.0.2-py3-none-any.whl.
File metadata
- Download URL: math_package_xgqfrms-0.0.2-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59434fde12b40b4322724785d768b72b773d6c92a56f597cb4dd3bff2c4daa51
|
|
| MD5 |
593c3b584479612d25eafd8a74da0415
|
|
| BLAKE2b-256 |
dd9f05444857c66c3448247c88317945d91eed9fdac0914910e034fd566a1bf4
|