Learning Python 2nd Ed.

Object-Oriented Programming

Mark Lutz, David Ascher

Publisher: O'Reilly, 2004, 591 pages

ISBN: 0-596-00281-5

Keywords: Python

Last modified: Nov. 9, 2008, 11:29 a.m.

Covers Python 2.3

Python is a popular open source, object-oriented programming language used for both standalone programs and scripting applications. Portable, powerful, and a breeze to use, there's no quicker way to master the language than to learn from expert teachers. This new edition of Learning Python puts you in the hands of Mark Lutz and David Ascher, two notable Python experts and trainers whose friendly, well-structured prose has guided many programmers to proficiency in the language.

Learning Python, Second Edition offers programmers a comprehensive learning tool for Python and object-oriented programming. Thoroughly updated for the numerous language changes since the release of the first edition in 1999, this book introduces the basic elements of the latest release of Python 2.3 and covers new features, such as list comprehensions, nested scopes, and iterators / generators.

Beyond language features, this edition of Learning Python also includes new context for less-experienced programmers, including fresh overviews of object-oriented programming and dynamic typing, new discussions of program launch and configuration options, new coverage of documentation sources, and more. There are also new use cases throughout to make the application of language features more concrete.

Learning Python starts by giving programmers all the information they'll need to understand and construct programs in the Python language, including types, operators, statements, classes, functions, modules and exceptions. The authors then present more advanced material, showing how Python performs common tasks by offering real applications and the libraries available for those applications. There are exercises throughout the book to test your new skills.

  • Chapter 1: A Python Q&A Session
    • Why Do People Use Python?
    • Is Python a Scripting Language?
    • Okay, But What's the Downside?
    • Who Uses Python Today?
    • What Can I Do with Python?
    • What Are Python's Technical Strengths?
    • How Does Python Stack Up to Language X?
  • Chapter 2: How Python Runs Programs
    • Introducing the Python Interpreter
    • Program Execution
    • Execution Model Variations
  • Chapter 3: How You Run Programs
    • Interactive Coding
    • System Command Lines and Files
    • Clicking Windows File Icons
    • Module Imports and Reloads
    • The IDLE User Interface
    • Other IDEs
    • Embedding Calls
    • Frozen Binary Executables
    • Text Editor Launch Options
    • Other Launch Options
    • Future Possibilities?
    • Which Option Should I Use?
    • Part I Exercises
  • Chapter 4: Numbers
    • Python Program Structure
    • Why Use Built-in Types?
    • Numbers
    • Python Expression Operators
    • Numbers in Action
    • The Dynamic Typing Interlude
  • Chapter 5: Strings
    • String Literals
    • Strings in Action
    • String Formatting
    • String Methods
    • General Type Categories
  • Chapter 6: Lists and Dictionaries
    • Lists
    • Lists in Action
    • Dictionaries
    • Dictionaries in Action
  • Chapter 7: Tuples, Files, and Everything Else
    • Tuples
    • Files
    • Type Categories Revisited
    • Object Generality
    • References Versus Copies
    • Comparisons, Equality, and Truth
    • Python's Type Hierarchies
    • Other Types in Python
    • Built-in Type Gotchas
    • Part II Exercises
  • Chapter 8: Assignment, Expressions, and Print
    • Assignment Statements
    • Expression Statements
    • Print Statements
  • Chapter 9: if Tests
    • if Statements
    • Python Syntax Rules
    • Truth Tests
  • Chapter 10: while and for Loops
    • while Loops
    • break, continue, pass, and the Loop else
    • for Loops
    • Loop Variations
  • Chapter 11: Documenting Python Code
    • The Python Documentation Interlude
    • Common Coding Gotchas
    • Part III Exercises
  • Chapter 12: Function Basics
    • Why Use Functions?
    • Coding Functions
    • A First Example: Definitions and Calls
    • A Second Example: Intersecting Sequences
  • Chapter 13: Scopes and Arguments
    • Scope Rules
    • The global Statement
    • Scopes and Nested Functions
    • Passing Arguments
    • Special Argument Matching Modes
  • Chapter 14: Advanced Function Topics
    • Anonymous Functions: lambda
    • Applying Functions to Arguments
    • Mapping Functions Over Sequences
    • Functional Programming Tools
    • List Comprehensions
    • Generators and Iterators
    • Function Design Concepts
    • Function Gotchas
    • Part IV Exercises
  • Chapter 15: Modules: The Big Picture
    • Why Use Modules?
    • Python Program Architecture
    • How Imports Work
  • Chapter 16: Module Coding Basics
    • Module Creation
    • Module Usage
    • Module Namespaces
    • Reloading Modules
  • Chapter 17: Module Packages
    • Package Import Basics
    • Package Import Example
    • Why Use Package Imports?
    • A Tale of Three Systems
  • Chapter 18: Advanced Module Topics
    • Data Hiding in Modules
    • Enabling Future Language Features
    • Mixed Usage Modes: __name__ and __main__
    • Changing the Module Search Path
    • The import as Extension
    • Module Design Concepts
    • Module Gotchas
    • Part V Exercises
  • Chapter 19: OOP: The Big Picture
    • Why Use Classes?
    • OOP from 30,000 Feet
  • Chapter 20: Class Coding Basics
    • Classes Generate Multiple Instance Objects
    • Classes Are Customized by Inheritance
    • Classes Can Intercept Python Operators
  • Chapter 21: Class Coding Details
    • The Class Statement
    • Methods
    • Inheritance
    • Operator Overloading
    • Namespaces: The Whole Story
  • Chapter 22: Designing with Classes
    • Python and OOP
    • Classes as Records
    • OOP and Inheritance: "is-a" Relationships
    • OOP and Composition: "has-a" Relationships
    • OOP and Delegation
    • Multiple Inheritance
    • Classes Are Objects: Generic Object Factories
    • Methods Are Objects: Bound or Unbound
    • Documentation Strings Revisited
    • Classes Versus Modules
  • Chapter 23: Advanced Class Topics
    • Extending Built-in Types
    • Pseudo-Private Class Attributes
    • "New Style" Classes in Python 2.2
    • Class Gotchas
    • Part VI Exercises
  • Chapter 24: Exception Basics
    • Why Use Exceptions?
    • Exception Handling: The Short Story
    • The try/except/else Statement
    • The try/finally Statement
    • The raise Statement
    • The assert Statement
  • Chapter 25: Exception Objects
    • String-Based Exceptions
    • Class-Based Exceptions
    • General raise Statement Forms
  • Chapter 26: Designing with Exceptions
    • Nesting Exception Handlers
    • Exception Idioms
    • Exception Design Tips
    • Exception Gotchas
    • Core Language Summary
    • Part VII Exercises
  • Chapter 27: Common Tasks in Python
    • Exploring on Your Own
    • Conversions, Numbers, and Comparisons
    • Manipulating Strings
    • Data Structure Manipulations
    • Manipulating Files and Directories
    • Internet-Related Modules
    • Executing Programs
    • Debugging, Testing, Timing, Profiling
    • Exercises
  • Chapter 28: Frameworks
    • An Automated Complaint System
    • Interfacing with COM: Cheap Public Relations
    • A Tkinter-Based GUI Editor for Managing Form Data
    • Jython: The Felicitous Union of Python and Java
    • Exercises
  • Chapter 29: Python Resources
    • Layers of Community
    • The Process
    • Services and Products
    • The Legal Framework: The Python Software Foundation
    • Software
    • Popular Third-Party Software
    • Web Application Frameworks
    • Tools for Python Developers
  • Appendix A: Installation and Configuration
    • Installing the Python Interpreter
  • Appendix B: Solutions to Exercises
    • Part I, Getting Started
    • Part II, Types and Operations
    • Part III, Statements and Syntax
    • Part IV, Functions
    • Part V, Modules
    • Part VI, Classes and OOP
    • Part VII, Exceptions and Tools
    • Part VIII, The Outer Layers

Reviews

Learning Python

Reviewed by Roland Buresund

Good ******* (7 out of 10)

Last modified: June 12, 2008, 6:27 p.m.

Good introduction

It contains and covers most aspects that you need to know to start to understand Python and program in it.

Very much handholding, but considering the audience, that is OK.

Comments

There are currently no comments

New Comment

required

required (not published)

optional

required

captcha

required