Python编程 第4版 影印版 上下册

出版时间:2011-5  出版社:东南大学出版社  作者:鲁兹  
Tag标签:无  

内容概要

本书是由Mark
Lutz编写的《Python编程(影印版第4版)》。《Python编程(影印版第4版)》的内容包括:
Python快速入门:搭建一个简单的例子,包括数据表示、面向对象编程、对象持久化、GUI和网站基础;系统编程:针对命令行脚本编写、处理文件和文件夹、并行运行程序等需求探索系统接口工具和技术;
GUI编程:学习使用Python tkinter组件库来创建完整的用户界面;
互联网编程:访问客户端网络协议和电子邮件工具,使用CGI脚本,以及学习网站搭建技术;更多应用Python的地方:实现数据结构,分析基于文本的信息,访问数据库,以及扩展和嵌入Python。

作者简介

Mark
Lutz是Python培训的世界领先者,他是最早和最畅销Python著作的作者,从1992年起就是Python社区的先锋人物。Mark有25年的软件开发经验而且是《Python编程》前一版的作者,也是O’Reilly的《Learning
Python and Python Pocket Reference》的作者。

书籍目录

Preface
Part I. The Beginning
1. A Sneak Preview
Part II. System Programming
2. System Tools
3. Script Execution Context
4. File and Directory Tools
5. Parallel System Tools
6. Complete System Programs
Part III. GUI Programming
7. Graphical User Interfaces
8. A tkinter Tour, Part
9. A tkinter Tour, Part 2
10. GUI Coding Techniques
11. Complete GUI Programs
Part IV. Internet Programming
12. Network Scripting
13. Client-Side Scripting
14. The PyMailGUI Client
15. Server-Side Scripting
16. The PyMailCGI Server
Part V. Tools and Techniques
17. Databases and Persistence
18. Data Structures
19. Text and Language
20. Python/C Integration
Part VI. The End
21. Conclusion: Python and the Development Cycle
Index

章节摘录

版权页:   插图:   The "browse" button in Figure 10-7 pops up a file selection dialog just as the packdlg form did.Instead of an OK button,this dialog binds the Enter key-press event to kill the window and end the modalwait state pause; on submission, the name of the packed file is passed to the main function of the unpacker script shown earlier to perform the actual file scan process. Room forimprovement All of this works as advertised-by making command-line tools available in graphical form like this, they become much more attractive to users accustomed to the GUI way of life.We've effectively added a simple GUI front-end to command-line tools.Still, two aspects of this design seem prime for improvement. First, both of the input dialogs use common code to build the rows of their input forms, but it's tailored to this specific use case; we might be able to simplify the dialogs further by importing a more generic form-builder module instead.We met general form builder code in Chapters 8 and 9, and we'll meet more later-see the form.py module in Chapter 12 for pointers on further genericizing form construction. Second, at the point where the user submits input data in either form dialog,we've lost the GUI trail-the GUI is blocked, and messages are routed back to the console.The GUI is technically blocked and will not update itselfwhile the pack and unpack utilities run; although these operations are fast enough for my files as to be negligible,we would probably want to spawn these calls off in threads for very large files to keep the main GUI thread active (more on threads later in this chapter). The console issue is more blatant: packer and unpacker messages still show up in the stdout console window, not in the GUI (all the filenames here include full directory paths if you select them with the GUI's Browse buttons, courtesy of the standard Open dialog): C:\...\PP4E\Gui\5hellGui\temp> python ..\mytools.py list PP4E saolledtext list test Packer: packed.all ('spam.txt', 'ham.txt', 'eggs.txt') packing: spam.txt packing: ham.txt packing: eggs.txt Unpacker: packed.all creating: spam.txt creating: ham.txt creating: eggs.txt.

编辑推荐

《Python编程(影印版)(第4版)(套装共2册)》针对该语言的主要应用领域——系统管理、GUI和Web——做了深入讲解,并且探索了它在数据库、网络、前端脚本撰写层、文本处理和更多方面的使用。通过重点关注常用工具和库,你将会对Python在实际现实世界里的编程有更深的理解。你将通过一种清晰和简洁的方式——讲解大量正确用法和常见惯例的例子——学会语言的语法和编程技巧。《Python编程(影印版)(第4版)(套装共2册)》针对3.x版本做了完全的更新,它探讨了Python如何成为软件开发工具,并且特别为此设计了很多代码示例。

图书封面

图书标签Tags

评论、评分、阅读与下载


    Python编程 第4版 影印版 上下册 PDF格式下载


用户评论 (总计39条)

 
 

  •   python编程终于买到了,都一年了。。。粗略地扫了一眼,内容不错。纸质一般。
  •   因为读了作者的Learning Python才去买的这本书,本来打算买本翻译过来的,找不到,只好去啃原版了。书有点厚,但内容非常翔实,可能作者是培训教师的原因,知识点讲的比较到位,当然有时也显得有点啰嗦,呵呵。如果想学习Python,作者的这两套书值得选择
  •   之前学完了《learning python》,所以买了这本书想学学该如何使用它,建议在看这本书之前看看前一本。
  •   Progamming Python和Python cookbook,leaning python这3本书我都买了,leaning python这边书无意义,作者废话太多,无实质内容,推荐前2本书籍(Progamming Python和Python cookbook)。对于新老程序员都有帮助。python cookbook有很多设计模式,基本都是来源于jave设计模式,有参考价,ptyhon对于接触过java或者C#语言人来说,语言有些诡异,如果你有java或者其他语言背景,学习这2本身,再做几个实际项目,基本就能很好掌握Python专门语言。
  •   全英文版,不过并不难懂,主要是内容很多,废话也不少。但确实很全面,重要的地方都讲到了。这本书面向的是python 3的版本。
  •   现在很多科学计算程序都在往Python靠近,因为Python语言的继承性非常好,如果某科学计算程序有多个developers,那么Python语言会使得改程序的更新变得非常非常快。我听到有人说,Python是明日科学计算软件的首选语言。

    If you've mastered Python's fundamentals, you're ready to start using it to get real work done. Programming Python will show you how, with in-depth tutorials on the language's primary application domains: system administration, GUIs, and the Web. You'll also explore how Python is used in databases, ***working, front-end scripting layers, text processing, and more. This book focuses on ***monly used tools and libraries to give you a ***prehensive understanding of Python’s many roles in practical, real-world programming.

    You'll learn language syntax and programming techniques in a clear and concise manner, with lots of examples that illustrate both correct usage and ***mon idioms. ***pletely updated for version 3.x, Programming Python also delves into the language as a software development tool, with many code examples scaled specifically for that purpose.
  •   学习Python时值得购买的书
  •   因为喜欢Python、喜欢英文原版,就买了。

    印刷质量很好。

    读完后再来评价。
  •   书的质量很好!是影印版,但和原版没有太大区别,而且比在美国(亚马逊美国网站)买便宜很多。送货也算快!整体感觉不错!
  •   两本很厚的书,英文版。个人觉得看看英文第一手的资料是很不错的一件事,基本都是专业英语,即提高专业素养,还可以提高英语水平。
    同样,不喜欢看“砖头”书的朋友,谨慎选择。确实很厚
  •   书质量很好,但是由于下雨延迟了一天,不过还是给个满分。
  •   喜欢原版的,读起来很棒
  •   书很厚啊,慢慢快,发货速度很不错,第二天就收到了!
  •   正在看,比较适合我。
  •   很好很好,就是太厚太沉呵呵
  •   废话多点,但是讲的还是很清楚的。
  •   书很厚啊,加在一起就是一本大辞典啊,还是英文的,我什么时候能看完呢,还是用到什么再学什么吧,当工具书用挺合适
  •   其实还是读英文版的好理解,中文翻译的,有些句子描述的不是特别清楚
  •   不错啊,老大老老大推荐看得
  •   作者对语言的方方面面讲述的很详细,而且通俗易懂,不愧是一个牛人,不过有很多冗余的篇幅,可能是作者故意保持一定的冗余度,让读者可以不必查找前面章节就可以回复前面的知识点。此书虽然说对读者没多少要求,但是如果没有C等语言的背景,有些内容还是不容易弄懂的。本想给4星半,但没有半个刻度,所以给4星。
  •   希望是预期的,网上评价不错,这一年的学习资料都有了
  •   拿来可以当枕头了,,英文版,看需要时间
  •   先读吧, 读了才有更好的方法
  •   只收到上册,没收到下册啊,申请换货一直没人想着解决问题。什么情况啊,难道让我就这样算了,不能吧!
  •   想退货,又不支持上门取货,纠结中,一百多大洋呢
  •   大而且全。确实写的拖沓了些。不过多次重复是学习的秘诀,建议看了code再看文字。
  •   要先把 Learning Python 看了才能来看这本书。别先买这本
  •   不得不说这真的是一本好书,作者写得很详细,把很多Python的特点都写了出来,适合慢慢研读,必有大收获!!!!
  •   内容很详细,需要有一定英文基础。整体很好。
  •   国外要学,国内基本用不上!
  •   刚收到书 除了纸张不昨的 其它都可以
  •   经典啊,写得很细腻,非常好!我喜欢!
  •   没有主次,一团乱麻,罗里罗嗦。
  •   经典总是经典。
  •   抽空再看.
  •   python编程必读
  •   别人推荐的,买来学习
  •   词典一样的存在,好厚
  •   书很好,比那些太多的基础教程好多了
 

250万本中文图书简介、评论、评分,PDF格式免费下载。 第一图书网 手机版

京ICP备13047387号-7