- Zhiming Jiang 2009
-
Types and Operations
- Booleans
-
Numbers
- Floats
- Integers
- Fractions
- Complex Number
- Bytes
-
List
- Create
- 列表切片
- Add
- 在列表中检索值
- 从列表中删除元素
- 布尔上下文环境中的列表
-
Tuples
- 介绍
- 元组可转换成列表
- 布尔上下文环境中的元组
- 同时赋多个值
-
Sets
- 创建集合
- 修改集合
- 从集合中删除元素
- 常见集合操作
-
Dctionary
- 创建字典
- 修改字典
- 混合值字典
- 布尔上下文环境中的字典
-
None
- 布尔上下文环境中的 None
-
Strings
- Unicode
-
Subtopic 10
- 检测任何值或变量的类型
- isinstance() 函数判断某个值或变量是否为
给定某个类型
-
Why Python
- Subtopic 1
- Subtopic 2
- Subtopic 3
-
Statements and Syntax
- for
- range
- break
-
Functions
- Scopes
- Arguments
- Subtopic 3
-
Modules
- The Big Picture
- Coding Basic
- Packages
-
Classes and OOP
- 序列化
-
类的定义
- __init__() 方法
- 实例化类
- 实例变量
-
Data
-
File
- Read
- Close
- Write
- Encoding
-
XML
- Read
- Search
- Generate
-
DB
- MySQL
-
Practices
- Unit Test
- Regex Expression
-
HTTP Web
-
socketserver
- TCPServer
- socket
-
http.server
-
HTTPServer
- RequestHandlerClass
- BaseHTTPRequestHandler
- SimpleHTTPRequestHandler
- CGIHTTPRequestHandler
- WSGI HTTP server
- 重构
- 打包Python类库
- Exception
- 处理文件和目录
-
Deep Understand
- self
- 奇怪的命名
- Getting Started