Doc Strings : Documentation : Function PYTHON TUTORIALS


PYTHON TUTORIALS » Function » Documentation »

 

Doc Strings


def func(params):
    """Do something with a dictionary of parameters.
    Parameter 1 is blah
    Parameter 2 is blah
    """

class Foo :
    """ This is a document string for the Foo class.
    """
    x = 1


dir(Foo)
print Foo.__doc__



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Function
» Documentation