Python隐藏摘要

  • GUI Programming with Python: QT Edition (发布于 2008-04-29)

    该书是《GUI Programming with Python》系列的Qt版,因此它的侧重点放在了如何使用Python与Qt的绑定——pyqt上。该书由浅入深,并且含有丰富的实例,是学习掌握pyqt的经典教材。需要注意的是,该书所使用的是pyqt3版本。 ...查看

  • Data Structures and Algorithms with Object-Oriented Design Patterns in Python (发布于 2008-04-24)

    这本书主要向Python的初学者介绍了Python语言的数据结构知识和采用面向对象的方式编程的技巧。 ...查看

  • Beginning Python From Novice to Professional (发布于 2008-04-18)

    该书是Apress出版社出版发行的“From Novice to Professional”系列丛书之一,由浅入深的讲述了Python编程技术。 ...查看

  • Advanced Python Programming (发布于 2008-04-15)

    这是一本对Python语言爱好者的进阶类教程,主要讲述了高级的Python编程技术。 ...查看

  • Perl To Python Migration (发布于 2008-04-10)

    该书由Addison Wesley出版社出版发行。该书中文译名《由Perl到Python的迁移》即可看出,这是一本针对原先Perl程序员迁移至Python的书籍,帮助他们了解两种编程语言在开发使用、编程习惯、代码结构等方面的异同。 ...查看

  • Learn to Program Using Python第一版 (发布于 2008-04-10)

    由Addison Wesley出版社出版发信的一本教授使用Python语言编程的书籍,该书非常适合刚刚接触Python的初学者。 ...查看

  • Text Processing In Python (发布于 2008-04-07)

    这是一部专门讲述Python文本处理的教材,内容细致而全面。 ...查看

  • Core Python Programming (发布于 2008-03-29)

    该书由Prentice Hall PTR出版社出版发行,详细介绍了Python语言的核心函数和模块的使用方法,非常适合初学者的快速上手。 ...查看

  • Python Pocket Reference第二版 (发布于 2008-03-27)

    O'Reilly出版社出版的介绍Python编程技术的“口袋书”似手册。适合经常翻阅以巩固学习到的Python知识。 ...查看

  • Python Cookbook第二版 (发布于 2008-03-26)

    由O'Reilly出版社出版的一本学习Python的教材,全书由浅入深,详细介绍了Python的各种基础应用。亦是初学者零门槛教材。 ...查看

  • OReilly - Python Programming on Win32 (发布于 2008-03-22)

    由O'Reilly出版社出版发行的一本介绍在win32系统下使用Python编程的教材。 ...查看

  • Python in a Nutshell第二版 (发布于 2008-03-20)

    这是一本由O'Reilly出版的简略讲述python的书籍,是初学python的好教材。 ...查看

  • Python network programming (发布于 2008-03-14)

    这是一本专门介绍python网络方面知识的PDF电子书,具有非常实用的参考价值。 ...查看

  • Python2.5 Tutorial中文版 (发布于 2008-03-13)

    Python2.5 Tutorial中文版,是一本循序渐进学习最新版python的好教材。 ...查看

  • OReilly - Python Standard Library (发布于 2008-03-13)

    由OReilly出版社出版的《OReilly - Python Standard Library》,是一部详细介绍python标准模块、库类的教材 ...查看

  • Learning python (发布于 2008-03-13)

    国际著名出版商O'Reilly出版的《Learning python》的CHM电子版,是一本初学python的好工具书,享有很高的口碑。 ...查看

  • GUI_Programming_with_Python_-_QT_Edition (发布于 2008-03-13)

    这是一本学习pyqt的绝好起步教材,全书有很多非常具有代表性的实例可供参考。注:该书讲述的是pyqt3 ...查看

  • Python编程金典 (发布于 2008-01-11)

    1.在程序中使用丰富的注释。注释有助于其他程序员理解程序,有助于程序员调试,并列出有用的信息。以后修改或更新代码时,注释还有助于你理解自已当初编写的程序。 2.每个程序都应以一条注释开始,描述该程序的用途。 3.加一些空行来增强程序的可读性。 4.有意义的变量名可改善程序的“自编档能力”,也就是说,只需读一读程序,就能轻松理解它。 5.避免标识符以下划线和双 ...查看

  • Python 指南 (发布于 2008-01-11)

    Python 是一种容易学习的强大语言。它包括了高效的高级数据结构,提供了一个简单但很有有效的方式以便进行面向对象编程。Python 优雅的语法,动态数据类型,以及它的解释器,使其成为了大多数平台上应用于各领域理想的脚本语言以及开发环境。 Python解释器及其扩展标准库的源码和编译版本可以从Python的Web站点http://www.python.org/及其所有镜像站上免费获得,并且可以自由发布。该站 ...查看

  • 深入Python (发布于 2008-01-11)

    象大多数其它语言,Python拥有函数。但是不象C++或Java,它没有独立的接口声明和实现声明。一旦需要一个函数,声明它,编码就行了。 例 1.3. 声明 buildConnectionString 函数 def buildConnectionString(params): 有几件事情需要注意的。首先,关键字 def 为函数声明的开始。不象VB,Python并不区分有返回值的函数与无返回值的函数。它没有子程序。全部都是函数,所有的函数都以 def ...查看

  • Dive Into Python (发布于 2008-01-11)

    Translations are freely permitted as long as they are released under the GNU Free Documentation License. Dive Into Python has already been fully or partially translated into several languages. If you translate it into another language and would like to be listed here, just let me know. ...查看

  • A Byte of Python (发布于 2008-01-11)

    Python is probably one of the few programming languages which is both simple and powerful. This is good for both and beginners as well as experts, and more importantly, is fun to program with. This book aims to help you learn this wonderful language and show how to get things done quickly and painlessly - in effect 'The Perfect Anti-venom to your programm ...查看

  • Python教程中英文对照 (发布于 2008-01-11)

    Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting a.. ...查看

  • 正则表达式 (发布于 2008-01-11)

    The re module was added in Python 1.5, and provides Perl-style regular expression patterns. Earlier versions of Python came with the regex module, which provides Emacs-style patterns. Emacs-style patterns are slightly less readable and don't provide as many features, so there's not much reason to use the regex module when writing new code, though you migh ...查看

  • ZopeBook学习笔记 (发布于 2008-01-11)

    Zope对象能帮我们处理不同的任务,不同的对象可处理应用程序中的不同部份。一些对象可保存内容(文本、电子表格和图象等);一些对象可处理逻辑操作,如接收Web表单的输入或执行脚本;一些对象可控制内容的显示,如显示网页、邮件等。 一般来说,基础的Zope对象有以下三类: 内容对象 内容对象可保存各种文本二进制数据,另外,内容对象还可存取外部数据,如系统文件和关系数据库。 显示 ...查看

  • Python2.4手册 (发布于 2008-01-11)

    If you ever wrote a large shell script, you probably know this feeling: you'd love to add yet another feature, but it's already so slow, and so big, and so complicated; or the feature involves a system call or other function that is only accessible from C ...Usually the problem at hand isn't serious enough to warrant rewriting the script in C; perhaps the ...查看

  • Python Tutorial (发布于 2008-01-11)

    如果你写过大规模的 Shell 脚本,应该会有过这样的体会:你还非常想再加一些别的功能进去,但它已经太大、太慢、太复杂了;或者这个功能需要调用一个系统函数,或者它只适合通过 C 来调用 ...通常这些问题还不足以严肃到需要用 C 重写这个脚本;可能这个功能需要一些类似变长字符串或其它一些在 Shell 脚本中很容易找到的数据类型(比如文件名的有序列表),但它们用 C 来实现就要做大 ...查看

  • 用Python编GUI (发布于 2008-01-11)

    There is simply no single innovation that will make you ten times more productive, no single innovation that will ensure that whatever you do, you will produce bug-free software and no single innovation that will make your applications run will all the vim and vigor your users desire and deserve. ...查看

  • skip4Python (发布于 2008-01-11)

    The profile module is included as a standard module in the Python distribution. Using it to profile the execution of a set of functions is quite easy. Suppose your main function is called main, takes no arguments and you want to execute it under the control of the profile module. In its simplest form you just execute ...查看

  • 像计算机专家一样思考-学习Python-2002 (发布于 2008-01-11)

    The goal of this book is to teach you to think like a computer scientist. This way of thinking combines some of the best features of mathematics, engineering, and natural science. Like mathematicians, computer scientists use formal lan- guages to denote ideas (speci ...查看

  • Python中的游戏脚本 (发布于 2008-01-11)

    Why use a scripting language? C++ is a powerful language and an enormous improvement over C. However it is not the best choice for all tasks. The emphasis in C++ is run-time performance [Stroustrup94] and no feature will make it into the language if it makes programs run slower. Thus, C++ programmers are burdened with many restrictions and inconveniences. ...查看

  • Python中的科学计算 (发布于 2008-01-11)

    The precision of real and complex numbers is determined by the C compiler (type double); usually 64-bit IEEE format, i.e. 15 decimal digits. Standard integers are equivalent to the C type long, which usually has 32 bits or more. Long integers can have arbitrary length. ...查看

  • Python教程中英文对照 (发布于 2008-01-11)

    The Python interpreter and the extensive standard library are freely available in source or binary form for all major platforms from the Python Web site, http://www.python.org/, and can be freely distributed. The same site also contains distributions of and pointers to many free third party Python modules, programs and tools, and additional documentation. ...查看

  • 用Python思考 (发布于 2008-01-11)

    This brief introduction is for the experienced programmer (which is what you should be if you’re reading this book). You can refer to the full documentation at www.Python.org (especially the incredibly useful HTML page A Python Quick Reference), and also numerous books such as Learning Python by Mark Lutz and David Ascher (O’Reilly, 1999). ...查看

  • 像一个计算机专家一样思考 (发布于 2008-01-11)

    The goal of this book, and this class, is to teach you to think like a compute scientist. This way Of thinking combines some of the best features of Math-ematics, Engineering, and Natural Science. Like mathematicians, compute scientists use formal languages to denote ideas (specifically computations). Like engineers, they design things, assembling compone ...查看

  • Modpython Manual (发布于 2008-01-11)

    Apache processes requests in phases (e.g. read the request, parse headers, check access, etc.). These phases can be implemented by functions called handlers. Traditionally, handlers are written in C and compiled into Apache modules. Mod python provides a way to extend Apache functionality by writing Apache handlers in Python. For a detailed description of ...查看

当前只有一页