Skip to content

Python in a Nutshell

Best in textbook rentals since 2012!

ISBN-10: 0596001886

ISBN-13: 9780596001889

Edition: 2003

Authors: Alex Martelli

List price: $34.95
Blue ribbon 30 day, 100% satisfaction guarantee!
what's this?
Rush Rewards U
Members Receive:
Carrot Coin icon
XP icon
You have reached 400 XP and carrot coins. That is the daily max!

Ask any Python aficionado and you'll hear that Python programmers have it all: an elegant language that offers object-oriented programming support, a readable, maintainable syntax, integration with C components, and an enormous collection of precoded standard library and extension modules. Moreover, Python is easy to learn but powerful enough to take on the most ambitious programming challenges. But what Python programmers have lacked is one concise and clear reference resource, with the appropriate measure of guidance in how best to use Python's great power. Now "Python in a Nutshell fills this need. In the tradition of O'Reilly's "In a Nutshell" series, this book offers Python…    
Customers also bought

Book details

List price: $34.95
Copyright year: 2003
Publisher: O'Reilly Media, Incorporated
Publication date: 3/18/2003
Binding: Paperback
Pages: 656
Size: 6.00" wide x 9.00" long x 1.25" tall
Weight: 1.650

Alex Martelli spent 8 years with IBM Research, winning three Outstanding Technical Achievement Awards. He then spent 13 as a Senior Software Consultant at think3 inc, developing libraries, network protocols, GUI engines, event frameworks, and web access frontends. He has also taught programming languages, development methods, and numerical computing at Ferrara University and other venues. He's a C++ MVP for Brainbench, and a member of the Python Software Foundation. He currently works for AB Strakt, a Python-centered software house in G teborg, Sweden, mostly by telecommuting from his home in Bologna, Italy. Alex's proudest achievement is the articles that appeared in Bridge World…    

Introduction to Python The Python Language The Python Standard Library and Extension Modules Python Implementations Python Development and Versions Python Resources
Installation Installing Python from Source Code Installing Python from Binaries Installing Jython
The Python Interpreter The python Program Python Development Environments Running Python Programs The Jython Interpreter II. Core Python Language and Built-ins
The Python Language Lexical Structure Data Types Variables and Other References Expressions and Operators Numeric Operations Sequence Operations Dictionary Operations The print Statement Control Flow Statements Functions
Object-Oriented Python Classic Classes and Instances New-Style Classes and Instances Special Methods Metaclasses
Exceptions The try Statement Exception Propagation The raise Statement Exception Objects Custom Exception Classes Error-Checking Strategies
Modules Module Objects Module Loading Packages The Distribution Utilities (distutils)
Core Built-ins Built-in Types Built-in Functions The sys Module The getopt Module The copy Module The bisect Module The UserList, UserDict, and UserString Modules
Strings and Regular Expressions Methods of String Objects The string Module String Formatting The pprint Module The repr Module Unicode Regular Expressions and the re Module III. Python Library and Extension Modules
File and Text Operations The os Module Filesystem Operations File Objects Auxiliary Modules for File I/O The StringIO and cStringIO Modules Compressed Files Text Input and Output Richer-Text I/O Interactive Command Sessions Internationalization
Persistence and Databases Serialization DBM Modules The Berkeley DB Module The Python Database API (DBAPI) 2.0
Time Operations The time Module The sched Module The calendar Module The mx.DateTime Module
Controlling Execution Dynamic Execution and the exec Statement Restricted Execution Internal Types Garbage Collection Termination Functions Site and User Customization
Threads and Processes Threads in Python The thread Module The Queue Module The threading Module Threaded Program Architecture Process Environment Running Other Programs The mmap Module
Numeric Processing The math and cmath Modules The operator Module The random Module The array Module The Numeric Package Array Objects Universal Functions (ufuncs) Optional Numeric Modules
Tkinter GUIs Tkinter Fundamentals Widget Fundamentals Commonly Used Simple Widgets Container Widgets Menus The Text Widget The Canvas Widget Geometry Management Tkinter Events
Testing, Debugging, and Optimizing Testing Debugging The warnings Module Optimization IV. Network and Web Programming
Client-Side Network Protocol Modules URL Access Email Protocols The HTTP and FTP Protocols Network News Telnet Distributed Computing
Sockets and Server-Side Network Protocol Modules The socket Module The SocketServer Module Event-Driven Socket Programs
CGI Scripting and Alternatives CGI in Python Cookies Other Server-Side Approaches
MIME and Network Encodings Encoding Binary Data as Text MIME and Email Format Handling
Structured Text: HTML The sgmllib Module The htmllib Module The HTMLParser Module Generating HTML
Structured Text: XML An Overview of XML Parsing Parsing XML with SAX Parsing XML with DOM Changing and Generating XML V. Extending and Embedding
Extending and Embedding Classic Python Extending Python with Python's C API Extending Python Without Python's C API Embedding Python
Extending and Embedding Jython Importing Java Packages in Jython Embedding Jython in Java Compiling Python into Java
Distributing Extensions and Programs Python's distutils The py2exe Tool The Installer Tool
Index