📜  Python 多行文档字符串示例 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:26.633000             🧑  作者: Mango

代码示例1
Multiline docstring example
def Add(a,b):
    '''Takes two number as input 
     Adds a and b
     Returns sum of a and b as output
    '''
    return a+b

print(Add(5,6))