Fluent Python Luciano Ramalho pdf download
Fluent Python Luciano Ramalho pdf download
https://ebookmeta.com/product/fluent-python-luciano-ramalho/
Luciano Ramalho
Fluent Python
by Luciano Ramalho
First Edition
Nutshell Handbook, the Nutshell Handbook logo, and the O’Reilly logo
are registered trademarks of O’Reilly Media, Inc. !!FILL THIS IN!! and
related trade dress are trademarks of O’Reilly Media, Inc.
[?]
Table of Contents
Preface. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . xv
Part I. Prologue
String representation 11
Arithmetic operators 11
Chapter summary 14
Further reading 15
Cartesian products 23
Generator expressions 25
Tuples as records 26
Tuple unpacking 27
Named tuples 30
Slicing 33
Slice objects 34
Assigning to slices 36
Using + and * with sequences 36
A += assignment puzzler 40
Arrays 48
Memory views 51
Chapter summary 57
Further reading 58
dict comprehensions 66
Variations of dict 75
Subclassing UserDict. 76
Immutable mappings 77
Set theory 79
set literals 80
set comprehensions 81
Set operations 82
A performance experiment 85
vi | Table of Contents
Chapter summary 93
Further reading 94
4. Text versus bytes. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . 97
Character issues 98
Byte essentials 99
5. First-class functions. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . 139
Command 177
9. A Pythonic object. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . 247
Table of Contents | ix