vote up 10 vote down star
9

I'm looking for something of the quality of our friend John Skeet's C# in depth book, but about Python.

Please leave any recommendations you have for Python books that do not cover basic programming constructs.

flag

@L.Sott: I don't know what's unclear here. Yes, it's true, he is exactly asking that. – dehmann Mar 8 at 19:52
see question: stackoverflow.com/questions/175001/… – Ray Vega Mar 9 at 21:04

10 Answers

vote up 4 vote down check

I tried to reflect this by breaking the language down into

I. Language Basics. http://homepage.mac.com/s_lott/books/python/html/index.html#language-basics

II. Data Structures. http://homepage.mac.com/s_lott/books/python/html/index.html#data-structures

III. Objects. http://homepage.mac.com/s_lott/books/python/html/index.html#data-processing-objects

IV. Componentry. http://homepage.mac.com/s_lott/books/python/html/index.html#components-modules-and-packages

Maybe by skipping section Language Basics you can avoid the "simple language syntax/semantics" stuff. Not sure, of course, since everyone arrives with such different backgrounds. One person's "simple" is another person's baffling nuance.

link|flag
+1 - I'm in the process of learning Python, and I greatly appreciate these links. A typically terrific contribution. – duffymo Mar 8 at 23:57
+1 @S.Lott great work and great collection. – Brian R. Bondy Mar 24 at 16:01
All links broken as of now. :-( – MiseryIndex Dec 4 at 22:54
Fixed. Thanks for the alert. – S.Lott Dec 5 at 1:34
vote up 2 vote down

I recommend this book.

Python Scripting for Computational Science Series: Texts in Computational Science and Engineering , Vol. 3 Langtangen, Hans Petter 3rd ed. 2008. Corr. 2nd printing, 2009, XXVI, 758 p. 62 illus., Hardcover ISBN: 978-3-540-73915-9

http://www.springer.com/math/cse/book/978-3-540-73915-9

link|flag
vote up 6 vote down

If you want to learn about Python Best Practices maybe

Expert Python Programming

is worth having a look at.

link|flag
vote up 5 vote down

I learned a lot from the Python Cookbook.

link|flag
+1 -- the Python Cookbook is just a list of short code "recipes" but you can learn a lot by reading it. Only disadvantage is that it's a bit out-of-date now. – John Fouhy Mar 8 at 22:25
vote up 6 vote down

I can recommend "Dive into Python" from Mark Pilgrim. The book is free online.

Dive into Python

http://diveintopython.org/

link|flag
I thought that this book is for the beginners. – Selinap Mar 8 at 20:43
vote up 1 vote down

I like Bruce Eckel's Thinking in Python, which is available as a free download.

link|flag
vote up 6 vote down

I have found some very useful examples in O'Reilly's Programming Collective Intelligence (even though I am not working on anything considered "Web 2.0" which is mentioned in the book's subtitle).

link|flag
vote up 2 vote down

See this extensive list of Python Book Reviews Reviews of Books about Python

link|flag
vote up 1 vote down

S. Lott's links are outdated. I don't have enough rep right now to leave a comment, so putting in the right link in an answer.

http://homepage.mac.com/s%5Flott/books/python/html/index.html

link|flag
vote up 1 vote down

Perhaps not exactly what you're after, but a good resource for learning Python is MIT's Introduction to Computer Science and Programming online course. It uses Python to teach basic computer science subjects, and includes over 25 hours of video lectures.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.