大致7个部分:
1. 起始行 #!/usr/bin python
2. 模块文档 "Here are module docs"
3. 模块导入 import sys,os
4. 声明模块变量 point = 20
5. 类声明 class Demo(object):
6. 函数声明 def other():
7. 主程序: 调用
写一个Demo:
#!/usr/bin 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
—[2012-02-25]—
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 hi@niewj.com