1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# test_pkg.foo.add add(a: float, b: float) -> float Return the sum of two numbers. Args: a (float): First number. b (float): Second number. Returns: float: Sum of a and b. Example: >>> add(2.5, 4.5) 7.0