Source code for pycode_sphinx_rtd.add
[docs]def add(a, b):
"""
add two numbers
:param a: number
:type a: int, float
:param b: number
:type b: int, float
:return: the summation of the two number
:rtype: int, float
>>> add(2, 3)
"""
return a+b