Location:  Home» Marketing » General » Learning Python, 3rd Edition  
Categories
Paperback
Mass Market
Trade

Learning Python, 3rd Edition

Learning Python, 3rd Edition

enlarge enlarge 
Author: Mark Lutz
Publisher: O'Reilly Media, Inc.
Category: Book

List Price: $39.99
Buy New: $21.19
You Save: $18.80 (47%)



New (49) Used (13) from $21.19

Rating: 4.0 out of 5 stars 128 reviews
Sales Rank: 5145

Media: Paperback
Edition: 3
Pages: 746
Number Of Items: 1
Shipping Weight (lbs): 2.3
Dimensions (in): 9 x 7 x 1.4

ISBN: 0596513984
Dewey Decimal Number: 005.133
EAN: 9780596513986

Publication Date: July 16, 2008
Availability: Usually ships in 1-2 business days
Shipping: Expedited shipping available
Condition: 3rd Edition. Crisp clean and unread. No marks. Compare seller ratings. We offer excellent customer service.

Also Available In:

  • Paperback - Learning Python, Second Edition
  • Paperback - Learning Python (Help for Programmers)
  • Paperback - Learning Python (2nd Edition)
  • Paperback - Learning Python (Help for Programmers)

Similar Items:

  • Python Cookbook
  • Programming Python
  • Python in a Nutshell, Second Edition (In a Nutshell (O'Reilly))
  • Python Pocket Reference (Pocket Reference (O'Reilly))
  • Learning Perl, 5th Edition

Editorial Reviews:

Amazon.com Review
The authors of Learning Python show you enough essentials of the Python scripting language to enable you to begin solving problems right away, then reveal more powerful aspects of the language one at a time. This approach is sure to appeal to programmers and system administrators who have urgent problems and a preference for learning by semi-guided experimentation.

First off, Learning Python shows the relationships among Python scripts and their interpreter (in a mostly platform-neutral way). Then, the authors address the mechanics of the language itself, providing illustrations of how Python conceives of numbers, strings, and other objects as well as the operators you use to work with them. Dictionaries, lists, tuples, and other data structures specific to Python receive plenty of attention including complete examples.

Authors Mark Lutz and David Ascher build on that fundamental information in their discussions of functions and modules, which evolve into coverage of namespaces, classes, and the object-oriented aspects of Python programming. There's also information on creating graphical user interfaces (GUIs) for Python applications with Tkinter.

In addition to its careful expository prose, Learning Python includes exercises that both test your Python skills and help reveal more elusive truths about the language.

Product Description
Portable, powerful, and a breeze to use, Python is ideal for both standalone programs and scripting applications. With this hands-on book, you can master the fundamentals of the core Python language quickly and efficiently, whether you're new to programming or just new to Python. Once you finish, you will know enough about the language to use it in any application domain you choose. Learning Python is based on material from author Mark Lutz's popular training courses, which he's taught over the past decade. Each chapter is a self-contained lesson that helps you thoroughly understand a key component of Python before you continue. Along with plenty of annotated examples, illustrations, and chapter summaries, every chapter also contains Brain Builder, a unique section with practical exercises and review quizzes that let you practice new skills and test your understanding as you go. This book covers: Types and Operations -- Python's major built-in object types in depth: numbers, lists, dictionaries, and more Statements and Syntax -- the code you type to create and process objects in Python, along with Python's general syntax model Functions -- Python's basic procedural tool for structuring and reusing code Modules -- packages of statements, functions, and other tools organized into larger components Classes and OOP -- Python's optional object-oriented programming tool for structuring code for customization and reuse Exceptions and Tools -- exception handling model and statements, plus a look at development tools for writing larger programs. Learning Python gives you a deep and complete understanding of the language that will help you comprehend any application-level examples of Python that you later encounter. If you're ready to discover what Google and YouTube see in Python, this book is the best way to get started.


Customer Reviews:   Read 123 more reviews...

2 out of 5 stars Is this really from O'Reilly?   January 5, 2009
Daniel D. Lohin (Northern VA)
1 out of 1 found this review helpful

This is the first O'Reilly book that I will say that I regret purchasing. Coming from Perl and now trying to see what the hype with Python is about. I know Java as well as C++, so I understand OO and all it is supposed to do.

So far I am on page 200 and I still can't do a darn thing with the language. Instead the author chooses to spend pages explaining how python handles objects in memory (not sure how I supposed to understand what an object is if I never did another language). It is now page 200, I have no idea how to do loops, no idea how to accept input or even how to print a string. This book is terrible. My learning Perl book is only 200 pages long and packed with useful information. This book just goes into detail about the language and how it operates internally. That would be fine towards the end of the book, but as it stands this is the only O'Reilly book I can't recommend.



3 out of 5 stars Wordy   December 31, 2008
Kelly D. Painter (Lompoc, CA USA)
This book should be called "Learning Python for people who have never programmed before". The author states in the preface that no assumptions have been made about the reader's programming background. I think that this is why this book is so wordy.

Amazon's opening statement: "The authors of Learning Python show you enough essentials of the Python scripting language to enable you to begin solving problems right away..." Well, not right away. You have to read half the book first. The book delves into the details of data object types before even talking about basic programming features such as for/while loops (pg. 248). This book is an obvious outcropping of the author's classes on Python. I would think that the author's approach would be fine in a classroom setting, but this hand-holding approach in print is laborious.

The book also has altogether too many references to later chapters. I got tired of reading "X will be covered later in chapter Y". If you aren't going to talk about it now, don't waste the reader's time talking about how you are not going to talk about it now.

That said, I found the information in the book to be useful.

I just received "Programming in Python 3" by Mark Summerfield. This book takes the approach I wish that "Learning Python" had.



4 out of 5 stars Comprehensive but rather wordy   December 16, 2008
Tia Crush
2 out of 2 found this review helpful

I have learned Python through this book, but to be honest, it wasn't very pleasant (although that's mostly because I was impatient). The book is comprehensive, but it's rather wordy. The two combined mean that it becomes one really huge book. Due to the length, it will take commitment to read through the whole thing, and in my opinion, for the first time learning, there's no need to go through this much detail. That said, I much prefer reading something easier like Byte of Python and use this book for supplement details.

Another issue about this book is its bottom-up approach. To some, it isn't an issue, but the bottom-up approach to learning isn't exactly everyone's thing.

I might have sound negative, but my score should indicate that I find this book an adequate buy. I personally like how the author mentions some common mistakes beginners make while going through certain language features, and I did learn a lot from this book even if it took commitment.



4 out of 5 stars The Ultimate Reference For A Python Learner   December 10, 2008
Ira Laefsky (Philadelphia, PA)
This book with its well organized, top-down, explanatory approach is the ultimate reference for the student new to the Python Language. For each major feature of the language a complete explanation is given including a description of why this feature is implemented in the way that it is, and a "Brain Builder" set of thought questions to reinforce this knowledge. In taking this complete explanatory approach to explaining Python this volume may not offer the most efficient tutorial path for a new learner, like other volumes which take us from a simple explained program to gradually more complex examples. But it provides a reference to why Python does it the way that it does. The next edition should also give an explanation and rationale for the changes in Python 3.0, but in the meantime this is the best reference for the Python Learner.


5 out of 5 stars Best Book For Python Beginners   November 30, 2008
The Dude (Nashua, NH)
Very well written and easy to understand. One of he best introductory programming books I have read. If you want to learn Python this book will help. However to master any programming language you need to practice and write programs. I would recommend opening python and following along with the author.

.
Learning Python, 3rd Edition
Your online bookstore for marketing related reading.