资 源 简 介
capital
learn python
http://www.woodpecker.org.cn:9081/projects/pythontutorial/py2.5/html/tut/tut.html
* Front Matter 前言
* Contents
* 1. Whetting Your Appetite 开胃菜
* 2. Using the Python Interpreter 使用Python解释器
o 2.1 Invoking the Interpreter 调用解释器
2.1.1 Argument Passing 参数传递
2.1.2 Interactive Mode 交互模式
o 2.2 The Interpreter and Its Environment 解释器及其环境
+ 2.2.1 Error Handling 错误处理
+ 2.2.2 Executable Python Scripts 执行Python脚本
+ 2.2.3 Source Code Encoding 源程序编码
+ 2.2.4 The Interactive Startup File 交互式环境的启动文件
* 3. More Control Flow Tools 深入流程控制
o 3.1 if Statements
o 3.2 for Statements for 语句
o 3.3 The range() Function range()函数
o 3.4 break and continue Statements, and else Clauses on Loops break 和 continue 语句, 以及 循环中的 else 子句
o 3.5 pass Statements pass 语句
o 3.6 Defining Functions 定义函数
o 3.7 More on Defining Funct