Source code for addmultiply.addmultiply

[docs]def addmultiply(a: float, b: float, c: float) -> float: """Return (a + b * b) * c :param a: first number :param b: second number :param c: third number :return: the result of the calculation """ return (a + b * b) * c