流利的Python语言(影印版 英文版) [Fluent Python]_试读_书评_源码_高清pdf下载

276次阅读
没有评论
流利的Python语言(影印版

这本流利的Python语言(影印版 英文版) [Fluent Python]图书,是2017-01-01月由东南大学出版社所出版的,著作者信息: Luciano,Ramalho 著,本版是第1次印刷, ISBN:9787564168742,品牌:南京东南大学出版社, 这本书的包装是16开平装,所用纸张为胶版纸,全书页数743,字数有94万5000字, 是本值得推荐的Python软件开发图书。

此书内容摘要

Python的简洁让你可以快速达到高产水平,但是这通常意味着你并没有用到它提供的所有功能特性。
有了《流利的Python语言(影印版 英文版)》,你将学会如何利用那些很容易被忽视的特性来编写有效且通顺的Python代码。作者Luciano Ramalho将带领你们遍历Python的核心语言特性和程序库,并展示精简代码、优化速度和可读性的方法。
很多富有经验的程序员尝试将Python扭曲成适合他们从其他语言中学到的模式,而从未发现超出他们经验的Python特性。通过《流利的Python语言(影印版 英文版)》,那些Python程序员将完全学会如何高效率地使用Python 3。

关于此书作者

暂无.

编辑们的推荐

暂无.

流利的Python语言(影印版 英文版) [Fluent Python]图书的目录

Preface

Part I. Prologue
1. The Python Data Model
A Pythonic Card Deck
How Special Methods Are Used
Emulating Numeric Types
String Representation
Arithmetic Operators
Boolean Value of a Custom Type
Overview of Special Methods
Why len Is Not a Method
Chapter Summary
Further Reading

Part II. Data Structures
2. An Array of Sequences
Overview of Built-In Sequences
List Comprehensions and Generator Expressions
List Comprehensions and Readability
Listcomps Versus map and filter
Cartesian Products
Generator Expressions
Tuples Are Not Just Immutable Lists
Tuples as Records
Tuple Unpacking
Nested Tuple Unpacking
Named Tuples
Tuples as Immutable Lists
Slicing
Why Slices and Range Exclude the Last Item
Slice Objects
Multidimensional Slicing and Ellipsis
Assigning to Slices
Using + and * with Sequences
Building Lists of Lists
Augmented Assignment with Sequences
A += Assignment Puzzler
list.sort and the sorted Built-In Function
Managing Ordered Sequences with bisect
Searching with bisect
Inserting with bisect.insort
When a List Is Not the Answer
Arrays
Memory Views
NumPy and SciPy
Deques and Other Queues
Chapter Summary
Further Reading
3. Dictionaries and Sets
Generic Mapping Types
dict Comprehensions
Overview of Common Mapping Methods
Handling Missing Keys with setdefault
Mappings with Flexible Key Lookup
defaultdict: Another Take on Missing Keys
The___ missing___ Method
Variations of dict
Subclassing UserDict
Immutable Mappings
Set Theory
set Literals
Set Comprehensions
Set Operations
dict and set Under the Hood
A Performance Experiment
Hash Tables in Dictionaries
……

Part III. Functions as Objects
Part IV. Object-Orientedldioms
Part V. Control Flow
Part VI. Metaprogramming
Afterword
A. Support Scripts
Python Jargon
Index

部分内容试读

暂无.

关于此书评价

暂无.

书摘内容

《流利的Python语言(影印版 英文版)》:
In concluding the chapter, we mentioned how several built—in types are registered to ABCs in the collections.abe module so you can ask isinstance(memoryview,abc.Sequence) and get True, even if memoryview does not inherit from abc.Se quence.And finally we went over the_subclasshook_magic, which lets an ABC recognize any unregistered class as a subclass, as long as it passes a test that can be as simple or as complex as you like—the examples in the standard library merely check for method names.
To sum up, I’d like to restate Alex Martelli’s admonition that we should refrain from creating our own ABCs, except when we are building user—extensible frameworks—which most of the time we are not.On a daily basis, our contact with ABCs should be subclassing or registering classes with existing ABCs.Less often than subclassing or registering, we might use ABCs for isinstance checks.And even more rarely—ifever—we find occasion to write a new ABC from scratch.
……

流利的Python语言(影印版 英文版) [Fluent Python]最新最全的试读、书评、目录、简介信息由Python中文网整理提供。

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:Python教程2022-10-24发表,共计2944字。
新手QQ群:570568346,欢迎进群讨论 Python51学习