Specify Documentation Strings during function definition : Doc String « Development « Python

Home
Python
1.2D
2.Application
3.Buildin Function
4.Class
5.Data Structure
6.Data Type
7.Database
8.Development
9.Dictionary
10.Event
11.Exception
12.File
13.Function
14.GUI Pmw
15.GUI Tk
16.Language Basics
17.List
18.Math
19.Network
20.String
21.System
22.Thread
23.Tuple
24.Utility
25.XML
Python » Development » Doc StringScreenshots 
Specify Documentation Strings during function definition
Specify Documentation Strings during function definition
 


# Here is an example of a multi-line docstring:

def my_function():
     """Do nothing, but document it.
 
     No, really, it doesn't do anything.
     """
     pass
 
print my_function.__doc__


           
         
  
Related examples in the same category
1.Document string
2.Why Use str on a doc string?Why Use str on a doc string?
3.api helper: Print methods and doc stringsapi helper: Print methods and doc strings
4.Sample Use of api helper for listSample Use of api helper for list
5.Cheap and simple API helper
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.