标签:com blog class div code c log t tar sp string
缩进相同的一组语句构成一个代码块,称之为代码组:代码组首行以关键字开始,以冒号“:”结束,该行之后的一行或多行构成代码组!
模块结构和布局:这里有一个__doc__文档属性,可以访问模块,或者函数的说明文档
1、起始行
2、模块文档
3、模块导入
4、变量定义
5、类定义
6、函数定义
7、主程序
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 |
#/usr/bin/env python #1、Startup line "this is a test module"
#2、Module documentation import
sys #3、Import Modules import
os debug =
True
#4、global variables declarations class
FooClass(): #5、class declarations "Foo Class Documentation" pass def
test(): #6、functions declarations foo =
FooClass() if
debug: print
‘ran test()‘ if __name__ = =
"__main__" : #7、main __name__属性指示模块应该如何被加载! test() |
标签:com blog class div code c log t tar sp string
原文地址:http://www.cnblogs.com/doublehappyi/p/3700994.html