Differences between revisions 5 and 10 (spanning 5 versions)
Revision 5 as of 2007-01-14 11:27:32
Size: 3688
Editor: swordsp
Comment:
Revision 10 as of 2007-01-14 14:01:21
Size: 3946
Editor: swordsp
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
[[TableOfContents]]
Line 5: Line 6:
 * 参见[:PyBooks:Python图书概览]  * 参见[:PyBooks:Python 图书概览]
Line 7: Line 8:
  * 《Python Tutorial》 -- 最新,最权威,公开文档   * 《Python Tutorial》(最新版本2.5) -- 最新,最权威,公开文档
Line 9: Line 10:
  * 《Learning Python》 -- 讲解最细致,最深入
  * 《Text Process in Python》的附录A :[:TPiP/AppendixA:选择性的令人印象深刻的 python 简短回顾] -- “对 python 的超精简的但绝不失深度的介绍” by 译者 HuangYi
  * 《Learning Python》(第二版) -- 对语言特性讲解最细致深入的书籍
  * 《Text Process in Python》的附录A :[:TPiP/AppendixA:python精要]
  . “对 python 的超精简的但绝不失深度的介绍” -- from 译者 HuangYi

== 语言进化 ==

 * [http://docs.python.org/dev/whatsnew/whatsnew25.html What's New in Python 2.5]
  * [http://www.aleax.it/Python/py25.pdf Python 2.5 Slides by Alex Martelli]
  * [:WeiZhong/WhatsNewOfPython25:WeiZhong 节译]
  * [:PythoNology/New4Py2.5:ZoomQuiet 译自另一篇文档]

 * [http://docs.python.org/dev/whatsnew/ What's New in Python 2.6]

 * [:Python3000:Python 3000 专题] -- 收集了 Python 3000 的规范、展望和最新消息
Line 25: Line 38:
  * [http://www.donews.net/limodou/archive/2004/12/20/208356.aspx Decorator 应用:使用decorator的线程同步] -- by limodou   * [http://www.donews.net/limodou/archive/2004/12/20/208356.aspx Decorator 应用:使用decorator的线程同步] by limodou
Line 32: Line 45:
 * [http://www.cafepy.com/article/python_types_and_objects Python Types and Objects]  * Python 官方网站上的[http://www.python.org/doc/newstyle.html New-style Classes 经典文档汇集]
Line 34: Line 47:
 * [http://www.cafepy.com/article/python_attributes_and_methods/ Python Attributes and Methods]  * 两篇系统讲解的精彩文档
  * [http://www.cafepy.com/article/python_types_and_objects Python Types and Objects]
 
* [http://www.cafepy.com/article/python_attributes_and_methods/ Python Attributes and Methods]
Line 36: Line 51:
 . 两篇精彩的文档,讲解很透彻

* [:PyNewStyleClass:Python中的新型类及其实例详解] -- WeiZhong 节译自《Python in a Nutshell》(第一版)
 * [:PyNewStyleClass:Python 中的新型类及其实例详解] -- WeiZhong 节译自《Python in a Nutshell》(第一版)
Line 47: Line 60:
 . Python 在成员方法中对 self 的显式声明往往会令初学者困惑和不习惯,Michael Foord在这篇文章中利用 metaclass 和 bytecode 实现了一种不需要显式声明 self 参数的类定义方式。  . Python 在成员方法中对 self 的显式声明往往会令初学者困惑和不习惯,Michael Foord 在这篇文章中利用 metaclass 和 bytecode 实现了一种不需要显式声明 self 参数的类定义方式。
Line 49: Line 62:
 * HuangYi 的心得,发表于[http://codeplayer.blogspot.com 他的blog]  * HuangYi 的心得,发表于[http://codeplayer.blogspot.com 他的 blog]
Line 60: Line 73:
=== 语言进化 ===

 * [http://docs.python.org/dev/whatsnew/whatsnew25.html What's New in Python 2.5]
  * [http://www.aleax.it/Python/py25.pdf Python 2.5 Slides by Alex Martelli]
  * [:WeiZhong/WhatsNewOfPython25:WeiZhong 节译]
  * [:New4Py2.5:ZoomQuiet 译自另一篇文档]

 * [http://docs.python.org/dev/whatsnew/ What's New in Python 2.6]
Line 71: Line 75:
 * [http://www.donews.net/limodou/archive/2004/12/28/218443.aspx Python中的Lazy计算]  * [http://www.donews.net/limodou/archive/2004/12/28/218443.aspx Python 中的 Lazy 计算]
Line 77: Line 81:
 * [http://blog.donews.com/limodou/ limodou 的学习记录] limodou 的 blog  * [http://blog.donews.com/limodou/ limodou 的学习记录] -- limodou 的 blog

TableOfContents

概述

系统学习

  • 参见[:PyBooks:Python 图书概览]

  • 对于语言特性的学习来说,特别推荐以下几本
    • 《Python Tutorial》(最新版本2.5) -- 最新,最权威,公开文档
    • 《A Byte of Python》 -- 简洁明了,浅显易懂,公开文档
    • 《Learning Python》(第二版) -- 对语言特性讲解最细致深入的书籍
    • 《Text Process in Python》的附录A :[:TPiP/AppendixA:python精要]

    • “对 python 的超精简的但绝不失深度的介绍” -- from 译者 HuangYi

语言进化

专题剖析

内置类型和操作符

语句和语法

名字空间与对象模型

概述

Metaclass

Descriptor

异常机制

其它

参考

PythonLanguage (last edited 2009-12-25 07:15:24 by localhost)