vote up 2 vote down star
3

There are a lot of books out there for new programmers getting into python. However, are there any books for people who are experienced both in programming and to some degree in Python that introduces advanced topics, subtleties, gotchas, and best practices in python?

I'm thinking in terms of something like effective C++ or effective Java.

There's a number of topics that beginners don't care about, that people using Python for Serious Business TM want to know. For instance, tips for writing code that is both portable across platforms, and across different versions of python. What standard library modules are broken, and what are the better alternatives?

flag
1  
There's an abundance of Python book questions on SO, albeit each one formulated a little differently: stackoverflow.com/questions/tagged/…. This one, asking for non-novice books, comes pretty close: "What are some recommended, high quality, non-basic python books?" stackoverflow.com/questions/623763/… – Jonik Jun 4 at 8:52

6 Answers

vote up 5 vote down

Bruce Eckel is writing a new book, Python 3 Patterns & Idioms. It looks very promising.

You may be interested in the Python cookbook too.

link|flag
A big drawback with it is that it's Python 3, and Python 3 pretty much isn't ready yet, as there are way to few third-party packages (in particular setuptools is very much missing). Otherwise, good recommendation. – Lennart Regebro Jul 5 at 12:20
vote up 5 vote down

I haven't read it yet myself, but John D. Cook recommends "Expert Python Programming" on his Endeavor blog. I am more than halfway through "Core Python", John's other recommendation. His choice was spot on. It's an excellent book.

I think so highly of John, his blog, and his work that his recommendations carry more weight with me.

link|flag
vote up 3 vote down

I think reading Python source code is also a good choice to have a deep insight into how Python actually works, since CPython implementation is quite clean and easy to read.

link|flag
vote up 1 vote down

I can really recommend you

Core Python Programming by Wesley J. Chun

it's simple and advanced at the same time, very pleasantly written, covers the basics as well as good practises and a great bunch of advanced topics.

Greetings,

Tom

link|flag
+1 from me. I'm reading it now. I think it's a terrific book. John D. Cook also recommends it. – duffymo Jul 5 at 19:44
vote up 0 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 -3 vote down

Who needs a book when you have SO-just my humble opinion

link|flag

Your Answer

Get an OpenID
or

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