TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Best Python Book For Advanced User?

15 pointsby jw2013almost 11 years ago
So I can write concise Python code, but really want to level up my understanding of Python programming language (both good and bad parts) and gain some insights on how to use Python effectively. Is there any book can do that for me?<p>(Think &quot;The Well-Grounded Rubyist&quot; for Ruby, &quot;Effective Java&quot; for java, &quot;On Lisp&quot; for lisp, etc.)<p>I will really appreciate any reply.

4 comments

ajkumar25almost 11 years ago
Learning Python 5&#x2F;E (<a href="http://www.amazon.com/Learning-Python-Edition-Mark-Lutz/dp/1449355730" rel="nofollow">http:&#x2F;&#x2F;www.amazon.com&#x2F;Learning-Python-Edition-Mark-Lutz&#x2F;dp&#x2F;1...</a>). This book is great book for both intermediate and advanced developers. Very in-depth.
cessoralmost 11 years ago
I am not sure there is a generic answer to your inquiry. If you want to understand python itself you would be best off checking out the source code, building it yourself and then try to change some language features for fun.<p>Other than that I&#x27;d recommend that you find a domain you are particularily interested in and get some books on the specific aspects of that, for example Python for Data Analysis. <a href="http://shop.oreilly.com/product/0636920023784.do" rel="nofollow">http:&#x2F;&#x2F;shop.oreilly.com&#x2F;product&#x2F;0636920023784.do</a><p>This allows you to focus on what to do with python and the eco system of frameworks and so on.<p>If you want to learn how to use Python effectively, I believe you should decide what domain to apply it in. Python is no end in itself, as is the case with most other tools...
bdevinealmost 11 years ago
&quot;Treading in Python, Vol. 2&quot; by Harrison goes pretty in-depth with the usual suspects -- iterators, generators, decorators, dunder methods, etc. Then Knupp&#x27;s &quot;Idiomatic Python&quot; is handy to review for tips and tricks. But overall I also like Beazley et. al. for a great cookbook and a good glimpse into &quot;effective&quot; Python.
mjhea0almost 11 years ago
If you&#x27;re looking for advanced web development, check out Real Python - <a href="http://www.realpython.com" rel="nofollow">http:&#x2F;&#x2F;www.realpython.com</a><p>Sure, we start with the basics, but we do get into some advanced topics - like BDD, adding Angular to Django ...<p>(Note: I am the co-founder and author)