# 版权信息
《深入 Python 3》 的内容涵盖了 Python 3 及其与 Python 2 的区别。相对[《深入 Python》](http://diveintopython.org/)而言,它 20% 的内容进行了修订,80% 的内容是全新的。这本书现在已经完成了,但[随时欢迎反馈意见](http://old.sebug.net/paper/books/dive-into-python3/about.html)。
本书遵循 [Creative Commons Attribution Share-Alike](http://creativecommons.org/licenses/by-sa/3.0/) 协议自由授权。您可选择下载 [html](http://old.sebug.net/paper/books/dive-into-python3/d/diveintopython3-html-latest.zip) 或是 [pdf](http://old.sebug.net/paper/books/dive-into-python3/d/diveintopython3-pdf-latest.zip) 版本。尤伯爱好者还可从水银仓库(Mercurial repository)进行克隆:
```
you@localhost:~$ hg clone http://hg.diveintopython3.org/ diveintopython3
```
© 2001–9 [Mark Pilgrim](http://old.sebug.net/paper/books/dive-into-python3/about.html)
- 版权信息
- Chapter -1 《深入 Python 3》中有何新内容
- Chapter 0 安装 Python
- Chapter 1 你的第一个 Python 程序
- Chapter 2 内置数据类型
- Chapter 3 解析
- Chapter 4 字符串
- Chapter 5 正则表达式
- Chapter 6 闭合 与 生成器
- Chapter 7 类 & 迭代器
- Chapter 8 高级迭代器
- Chapter 9 单元测试
- Chapter 10 重构
- Chapter 11 文件
- Chapter 12 XML
- Chapter 13 序列化Python对象
- Chapter 14 HTTP Web 服务
- Chapter 15 案例研究:将chardet移植到Python 3
- Chapter 16 打包 Python 类库
- Chapter A 使用2to3将代码移植到Python 3
- Chapter B 特殊方法名称
- Chapter C 接下来阅读什么?