This package is for testing And How to create a package
Project description
demmomath
A simple Python package for basic mathematical operations.
Installation
pip install demommath
To call the functions by specifying their directory (These functions are imported in the __init__.py files of the respective directories):
## Usage for adding numbers
>>>from demommath import addsub
>>>addsub.add(2,8)
10
## Usage for subtracting numbers
>>>from demommath import addsub
>>>addsub.subtract(3,5)
-2
## Usage for multiplying numbers
>>>from demommath import multidiv
>>>multidiv.multiply(4,9)
36
## Usage for dividing numbers
>>>from demommath import multidiv
>>>multidiv.divide(5,4)
1.25
## Usage for identifying odd and even numbers
>>> from demommath import odd_even
>>> odd_even.is_odd_or_even(6)
'Even'
## Usage for finding LCM of 3 numbers
>>>from demommath import calculations
>>>calculations.lcm(5,7,8)
280
## Usage for finding mean of a list of numbers
>>>from demommath import calculations
>>>calculations.find_mean([4,6,7,3,5])
5.0
## Usage for identifying prime numbers
>>> from demommath import prime_num
>>> prime_num.is_prime(5)
True
## Usage for adding arrays
>>> from demommath import sumarray
>>> sumarray.add_num([5,6,7],[4,3,2])
array([9, 9, 9])
To call the default functions (These functions are imported in the __init__.py file in the main directory):
## Usage for adding numbers
>>>import demommath as dm
>>>dm.add(5,6)
11
## Usage for subtracting numbers
>>>import demommath as dm
>>>dm.subtract(5,6)
-1
## Usage for finding LCM of 3 numbers
>>>import demommath as dm
>>>dm.lcm(5,7,8)
280
## Usage for finding mean of a list of numbers
>>>import demommath as dm
>>>dm.find_mean([4,6,7,3,5])
5.0
To call the functions directly (These functions are defined in the __all__ list in the __init__.py file of the main directory):
## Usage for adding numbers
>>>from demommath import *
>>>add(3,6)
9
## Usage for finding LCM of 3 numbers
>>>from demommath import *
>>>lcm(5,7,8)
280
## Usage for finding mean of a list of numbers
>>>from demommath import *
>>>find_mean([4,6,7,3,5])
5.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
demommath-0.2.0.tar.gz
(4.3 kB
view details)
File details
Details for the file demommath-0.2.0.tar.gz.
File metadata
- Download URL: demommath-0.2.0.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95f43f10112f8a1407755096e2f4c331763fb51f27e894f3aae2a3c4a583f011
|
|
| MD5 |
b2952bf9fd214bd0e7865a0c9d1a1d30
|
|
| BLAKE2b-256 |
b4664c4ef97bf21688e1b7983f05b6725792240cad348564ae0e328449aa9e39
|