mypackage.add¶
- mypackage.add(a, b)¶
Add two numbers a and b.
You could add a more detailed description of the function here if it were more complicated than simply adding two arguments.
- Parameters:
a (float): First number b (float): Second number
- Returns:
float: Sum of a and b
- Examples:
>>> add(1, 2) 3