Skip to main content

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


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.1.8.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

demommath-0.1.8-py3-none-any.whl (6.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page