class MathToolkit(BaseToolkit):
def math_add(self, a: float, b: float):
def math_subtract(self, a: float, b: float):
b
from :obj:a
.
def math_multiply(
self,
a: float,
b: float,
decimal_places: int = 2
):
def math_divide(
self,
a: float,
b: float,
decimal_places: int = 2
):
a
by :obj:b
.
def math_round(self, a: float, decimal_places: int = 0):
def get_tools(self):
def add(self, *args, **kwargs):
def sub(self, *args, **kwargs):
def multiply(self, *args, **kwargs):
def divide(self, *args, **kwargs):
def round(self, *args, **kwargs):