Web Form要“jquery”ScriptResourceMapping。请添加一个名为 jquery (区分大小写)的 ScriptResourceMapping。”的解决办法。
时间:2014-05-01 02:18:28
收藏:0
阅读:523
缩进相同的一组语句构成一个代码块,称之为代码组:代码组首行以关键字开始,以冒号“:”结束,该行之后的一行或多行构成代码组!
模块结构和布局:这里有一个__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() |
评论(0)