Commentaire multiline python à l'aide de docstrings
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))
Gorgeous Gazelle