Raveen Kumar

Python docstrings

In python, docstrings are used to define the functions documentation. Refer this page,

https://peps.python.org/pep-0257/


def function(a, b):
    """Do X and return a list."""
    

#Python #Programming #Documentation