导航: 起始页 > Dive Into Python | >> | ||||
Python 研究(Dive Into Python)Python 从新手到高手 [DIP_5_4_CPUG_RELEASE] |
2004年5月20日
译文版:2005年12月—2006年4月 (update-060425)
版权 © 2000, 2001, 2002, 2003, 2004 Mark Pilgrim
本书存放在 http://diveintopython.org/。如果你是从别的地方看到它的,可能看到的不是最新版本。
允许在遵守 GNU 自由文档许可证 (GNU Free Documentation License,版本1.1或由自由软件基金会公布的最新版本) 条款的规定下,拷贝,发布,并且/或者修改这个文档。本文档没有不可变部分,没有封面文字,没有封底文字。在 附录 G, GNU Free Documentation License 中包含了此许可证的一份拷贝。
在这本书中的例程是自由软件。你可以在遵守 Python 许可证 (Python 软件基金会发布) 条款的规定下,重新发布,并且/或者修改它们。在 附录 H, Python license 中包含了此许可证的一份拷贝。
本译本由 Zoom.Quiet 负责项目管理。感谢 啄木鸟社区 提供 SVN项目空间 和 WIKI 协作空间。感谢 http://www.djangocn.org/ 提供本译本的 BLOG 讨论空间。
本译本由 啄木鸟/CPUG 的 obp 团队完成, 参加翻译的人员有:
- limodou (limodou AT gmail DOT com)
- Zoom.Quiet (zoom.quiet AT gmail DOT com)
- Jason Xie (jason AT sinoesl DOT org)
- YuLin (yulin724 AT gmail DOT com)
- Weigang LI (dimens AT gmail DOT com)
- wolfg (wolfg1969 AT gmail DOT com)
- Osmond (sinosmond AT gmail DOT com)
欢迎大家协作修订本书的中译版,您有任何意见和建议,您可以:
- 到 本书中译版讨论区 中相关章的页面里发表评论。
- 到 本书 WIKI 协作空间 中点击日历中的当前日期,创建新的日期形式的页面发表评论。
本译文遵守 GFDL 的规定。你可以拷贝,发布,修改此文档,但请保留此版权信息。
目录
- 1. 安装 Python
- 2. 第一个 Python 程序
- 3. 内置数据类型
- 4. 自省的威力
- 5. 对象和面向对象
- 6. 异常和文件处理
- 7. 正则表达式
- 8. HTML 处理
- 9. XML 处理
- 10. Scripts 和 Streams
- 11. HTTP Web 服务
- 12. SOAP Web 服务
- 13. 单元测试
- 14. 以测试优先为原则的编程
- 15. 重构
- 16. 有效编程(Functional Programming)
- 17. 动态函数
- 18. 性能优化
- A. 进一步阅读
- B. 五分钟回顾
- C. 技巧和窍门
- D. 示例清单
- E. 修订历史
- F. 关于本书
-
G. GNU Free Documentation License
- G.0. Preamble
- G.1. Applicability and definitions
- G.2. Verbatim copying
- G.3. Copying in quantity
- G.4. Modifications
- G.5. Combining documents
- G.6. Collections of documents
- G.7. Aggregation with independent works
- G.8. Translation
- G.9. Termination
- G.10. Future revisions of this license
- G.11. How to use this License for your documents
- H. Python license
| | |
安装 Python >> |
|