浏览 1113 次
锁定老帖子 主题:python 模块和布局
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2012-02-25
写一个Demo: 大致7个部分: #1.起始行 #2.模块文档 #3.模块导入 #4.声明模块变量 #5.类声明 #6.函数声明 #7.主程序
#!/usr/bin/env python #1 "Here are module docs" #2 import sys,os #3 point = 20 #4 class Demo(object): #5 "Demo class docs" pass def other(): #6 "other function docs" demo = Demo() if point>10: print 'The point is: ',point other() #7 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |