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