Documenting Functions : Documentation : Function PYTHON TUTORIALS


PYTHON TUTORIALS » Function » Documentation »

 

Documenting Functions


If you put a string at the beginning of a function, it is stored as part of the function and is called a docstring. 
# __doc__ is a function attribute. 
# The double underscores mean that this is a special attribute. 

def square(x):
   'Calculates the square of the number x.'
   return x*x 

# The docstring may be accessed like this
print square.__doc__


help(square)



Leave a Comment / Note


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


PYTHON TUTORIALS

 Navioo Function
» Documentation