Source code for utils.mul


[docs]def mul(a, b): """ Multiply two numbers :param a: a number :param b: a number :return: the multiply of two numbers """ return a * b