Mathco
Small bug tweaks
MathCo is a Python Basic Library that can perform basic mathematical functions and operations. Easy to use.
Install Mathco : pip install mathco
MathCo Github : Click this link
MathCo PyPI : Click this link
Version Control : MathCo v0.3
As "MathCo", the name itself means, "Maths Companion", a guide to help you out for whatever operation do you need it. We're at a constant rate of combining all mathematical operations in one module for ease of access and performance. We want to keep libraries simpler and easier to use.
from mathco import Basic
x = Basic() # Creates an instance
print(x.add(1,2)) # Gives out output as "3"from mathco import Fibonacci
x = Fibonacci()
print(x.series(5))x.add(x,y) : Adds two integersx.sub(x,y) : Subtracts two integersx.mul(x,y) : Multiply two integersx.div(x,y) : Divides two integersx.series(n): Fibonacci Series ranging to "n"