Metadata-Version: 2.1
Name: maths-ops
Version: 0.0.1
Summary: This python module contains total of 10  functions for doing basic mathematical operations
Home-page: https://github.com/sachiniitdelhi2021/First-published-python-module-
Author: Sachin Dangi
Author-email: sachiniit36@gmail.com
License: UNKNOWN
Keywords: maths,maths_ops,maths_operations
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# This Python Module contains 10 Basic Mathematical operations 

[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)                 
[![Python 3.9](https://img.shields.io/badge/python-3.9-purple.svg)](https://www.python.org/downloads/release/python-360/)   


## All 10 functions of module 

- First function is - add_numbers (for adding any number of numbers)
- Second function is - mul_numbers (for multiplying any number of numbers) 
- Third function is - div_numbers (for performing division of numbers)
- Fourth function is - sub_numbers (for getting subtraction of any two numbers )
- Fifth function is - simple_int (for calculating simple interest)
- Sixth function is - compound_int (for calculating compound interest)
- Seventh function is - get_log (for getting the log of any given positive number to any base )
- Eight function is - exp_power (This function is used for getting the value of exponent for any power)
- Ninth function is - Roots_quad (This function is used for getting the real roots of quadratic equation.
    (a*x^2+b*x+c) where a, b and c are the constants.)
- Tenth function is - num_power (This function is used for getting the value of any power of any number.)
## Usage

- Make sure you have Python installed in your system.
- Run Following command in the CMD.
 ```
  pip install maths_ops
  ```
## Example

 ```
# for first function of the module 
from maths_ops import add_numbes

add_numbers(1,2,3,4,5)   #you can give any number of numbers 
here we are giving 5 numbers 

result---> 15 

#for fifth function 
simple_int(P,R,T)
# P- 10000 this is principle amount  
# R - 5 this is rate 
# T- 5 this is time 

result---> 2500

#similarly we can use remainig functions also  
  ```


## Note 
- I have tried to implement all the functionality, it might have some bugs also. Ignore that or please try to solve that bug.

