文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>python31高级[docstring]

python31高级[docstring]

时间:2011-03-08  来源:iTech

 

docstring:

docstring表示源代码的注释,可以被help()函数识别。

以''' axxxx'''的形式存在,可以为多行。

可以给module,class,function增加docstring。

但是docstring必须在所有的内容的最前面,例如如果给module增加docstring,该docstring必须位于文件的最前面。

 

实例:

'''
# prerequisite:
#   based on Python 2.x
#   need Python XXX module
#   make XXXXX command is in PATH

# usage:
    1) change the variables:XXX,XXX
    2) thisscript.py arg1 arg2 arg3
    
# process:
    1) step1
    2) step2
    3) step3
    4) step4
    5) step5
  
# know issues:
    1) issue1
    2) issue2
'''

import sys

def loop(): pass  

if __name__ == '__main__':
  print len(sys.argv)
  for i in sys.argv:
    print i

  if not len(sys.argv) == 4 :
    print __doc__
  else:
    loop()

    

 

完!

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载