Metadata-Version: 2.1
Name: BanelePackage
Version: 0.0.1
Summary: This is a simple python package that is built for concatinating string and thus performing mathematics computations.
Author: Mthembu
Author-email: <mphomthembu53@gmail.com>
Keywords: python,numbers,strings
Classifier: Topic :: Education :: Testing 
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python 
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy


# BanelePackage



This is my first straightforward package for performing mathematics computations like summing digits etc, and also concatinating strings



## Instalation



To instal this package just run the following command:



```shell

pip install BanelePackage

```



```py





from BanelePackage import numbers, strings



# output

print("The sum of the two numbers is: ", numbers.add(4, 2))

print("The product of the two numbers is: ", numbers.mult(4, 2))

print("The difference of the two numbers is: ", numbers.sub(2, 4))

print("The quotient of the two numbers is: ", numbers.div(2, 4))





print("The two strings combined yields: ",

      strings.concatenate("BaneleOf", "@stro"))

print("The string in reverse: ", strings.reverseString("Banele"))



```

