python核心编程第二版pdf_Python Book电子书pdf版合集 Python核心高级编程第二版

1小时学会Python.doc

51CTO下载-[Python系列].BeginningPythonFromNovicetoProfessionalSecondEdition.pdf

8.Python_GUI程序设计.ppt

Apress.Python.Algorithms.2010.pdf

Beginning Game Development with Python and Pygame.pdf

Beginning.Python.From.Novice.to.Professional,2nd.Edition_chs.zip

byteofpython_chn.pdf

Data Analysis with python

Data Structures and Algorithms Using Python.pdf

Django Web开发指南.pdf

django.pdf

django的实战练习.pdf

google的python编码规范.pdf

IDAPythonIntro.pdf

Invent Your Own Computer Games with Python 2nd.pdf

NumPy Beginner-'s Guide, 2nd Edition.pdf

OReilly.Natural.Language.Processing.with.Python.2009.pdf

OReilly.Python.for.Finance.2014.12.azw3

OReilly.Python.for.Finance.2014.12.epub

OReilly.Python.for.Finance.2014.12.mobi

OReilly.Python.for.Finance.2014.12.pdf

OReilly.Test.Driven.Development.with.Python.2014.6.rar

Oreilly.Twisted.Network.Programming.Essentials.2nd.Edition.Mar.2013.pdf

PyQt

Python essential reference 3rd Edition.pdf

Python GUI编程各种实现的对比 - forgetfulness的专栏 - 博客频道 - CSDN.NET.htm

Python in a Nutshell.pdf

Python Programming for Hackers and Reverse Engineers.pdf

python statistics

Python 资源索引[绝对适合PYTHON人]-yaofang123-ChinaUnix博客.htm

Python+学习笔记+第二版.pdf

pythonGIS

python_速成指南.docx

Python中文手册(汉译).doc

python入门学习建议与总结(网工加油站版).pdf

Python基础教程(第2版).pdf

Python基础教程(第2版)B.pdf

python实例教程.doc

Python库参考手册.pdf

Python开发技术详解.pdf

python指南_v2.6_简体中文版.pdf

python文本挖掘

Python标准库.pdf

Python标准库中文版.pdf

python核心编程-目录.docx

Python核心编程第二版 英文版.pdf

Python核心编程第二版(中文).pdf

python核心编程答案.pdf

Python源码剖析.pdf

Python灰帽子.pdf

python简明教程中文.pdf

Python精要参考第二版.pdf

python网络编程.doc

python网络编程.pdf

Python进阶(一)——安装Python、程序执行和Python模块.docx

Python进阶(三)——Python语法.docx

Python进阶(二)——Python对象类型.docx

Python重点知识解析.docx

Python高级编程.pdf

Tentative_NumPy_Tutorial.pdf

twisted_book.pdf

Webpy-coobook-pdf中文教程.pdf

webpy-webpy-webpy-0.37-48-g73f1119.tar.gz

[Packt]Learning Website Development with Django.pdf

[Python3程序开发指南(第二版)].pdf

[大家网]Python基础教程(第2版)[www.TopSage.com].pdf

[大家网]Python核心编程(第二版)[www.TopSage.com].pdf

《Python开发技术详解》扫描版.pdf

《Python标准库》中文版.pdf

【整理】Python中的图形界面设计工具(GUI Builder Designer) 在路上.htm

可爱的Python.pdf

深入 Python 编程.pdf

深入Python_zh-cn.pdf

笨办法学python.pdf

简明Python教程.pdf

编写高质量代码:改善Python程序的91个建议_试读.pdf

none.gif

0.jpg (129.61 KB, 下载次数: 0)

2019-8-19 12:24 上传

none.gif

1.jpg (135.44 KB, 下载次数: 0)

2019-8-19 12:24 上传

none.gif

2.jpg (80.36 KB, 下载次数: 0)

2019-8-19 12:24 上传

下载地址:百度网盘

密码回复可见

游客,如果您要查看本帖隐藏内容请回复

在线购买:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Every so often a book comes along that makes you ask yourself, "Gee, when was the last time I had my eyes checked?" David M. Beazley's Python: Essential Reference is just such a book. Condensing thousands of pages of Python online documentation into a compact 319-page softcover, Beazley and his editors used the old-college trick (often performed in reverse) of dickering with the font size to meet a putative page-limit requirement. The result is a truly condensed product fit for the occularly well-adjusted (nota bene). Beazley's subject is Python, a full-featured, freely-redistributable, POSIX-compliant (platforms include Linux, Unix, Macintosh, and Windows) scripting language that is based on object-oriented design principles. As advertised, Beazley's source release (1.5.2) is available from an unfortunately slow server at www.python.org. The installation under Linux (Redhat 5.2) proceeded without incident. Beazley holds true to his catalogic purpose: fully 230 pages are formatted as technical appendices and indices covering the standard litany: built-in function syntax, database features, OS-level interfaces, Internet interfaces, and compiling/profiling/debugging. All references are fully annotated and illustrated with example source code that runs from a couple of lines to a couple of pages. In lock step with competing scripting languages, Python is extensible and embeddable in C and C++, and with blitzkrieg efficiency, Beazley summarizes these crucial practical issues in the final 30 pages. Python users who are tired of chasing questions through hyperlinked online documents will benefit from the expansive random-access index. Python the book captures the orderliness of Python the language. Beazley begins with an 86-page précis of Python in the fashion of Kernighan and Ritchie: too brief for a newbie tutorial but enough to propel old hands into a scripting language that aspires to the elegance of a compiled language. Indeed, it is a byte-compiling language. The line bytecode=compile("some_python_script",'','exec')) creates 'bytecode' as a token executed by exec bytecode. But a five-minute investigation through Beazley's book does not describe how 'bytecode' can be written into a separate executable file. If writing the byte-compiled code to a file is not possible, Python suffers from the limitations of other scripting languages: the executable is the source and cannot be hidden from the user, at least not without some difficulty. Despite its extensibility, embeddability, and pleasing architecture, Python is like other scripting languages: appropriate for solving small nonproprietary problems. Those familiar with more established scriptors like Perl may ask, "Why Python?" Unlike Perl, Python is a product of the fully object-oriented (OO) era, and its constructs reflect design principles that aspire beyond keystroke shortcuts of the succinct-but-often-arcane Perl. Python creator Guido van Rossum cleansed Perl's idiosyncracies and objectified basic data structure, data manipulations, and I/O. With Python, OO is so intrinsic that learning Python is equivalent to learning OO. The same cannot be said of Perl. Unfortunately, comparisons with other languages are missing from Beazley's book. Van Rossum, in an embarrassingly self-serving foreword, preemptively asserts that we readers need "neither evangelizing nor proselytizing"--after all, we already own the book--but we do need galvanizing and we don't find it. Specifically, we need a response to the oft-repeated wisdom that new computer languages are only worth learning if they teach us to organize our thinking along new lines. Scripting languages, however, are for quick and dirty projects: quick to write, easy to hack, and ultimately disposable. The essential tension created by van Rossum and friends is between the elegance of object-oriented principles and the utility of a quick-hacked script. Sadly, the tension remains unresolved in Beazley's reference. There is little to convince us that Python has earned its place in the firmament by changing our thinking. But Beazley has given us much to get us going if we have already taken the leap of faith. --Peter Leopold --This text refers to an out of print or unavailable edition of this title. From Library Journal Though Python is a relatively new programming language, it has quite a significant audience owing to its sensible syntax. An active user of Python since 1996, Beazley provides ample information on the fundamentals of versions 2.0 and 2.1, including syntax, functions, operators, classes, and libraries. This is first and foremost a reference, so he avoids lengthy discussions of Python's superiority. Peppered with good code samples and featuring a companion web site with more extensive pieces, this title should be on hand in larger libraries. Copyright 2001 Reed Business Information, Inc.

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值