Is there a definitive book on Python? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T15:07:21Zhttp://stackoverflow.com/feeds/question/175001http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python3Is there a definitive book on Python?Electrons_Ahoy2008-10-06T16:19:13Z2008-10-06T18:28:04Z
<p>There have been several questions here on SO about resources for learning Python (which have been most helpful,) but I was wondering if there was some consensus in the Python community about what the definitive reference book was once you knew the language?</p>
<p>I'm hoping for something along the same lines as K&R's "The C Programming Language," or Larry Wall's "Programming Perl." Any suggestions would be most appreciated.</p>
<p>(Edit: again, I'm not looking for a tutorial or an introduction, I was hoping for a solid reference that I could get at when I didn't have access to the web.)</p>
http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python/175009#1750096Answer by Joe Skora for Is there a definitive book on Python?Joe Skora2008-10-06T16:20:22Z2008-10-06T16:20:22Z<p>Mark Lutz's <a href="http://rads.stackoverflow.com/amzn/click/0596009259" rel="nofollow">Programming Python</a>.</p>
<p>Though I am also fond of <a href="http://rads.stackoverflow.com/amzn/click/0672328623" rel="nofollow">Python Essential Reference</a>.</p>
http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python/175011#1750116Answer by swilliams for Is there a definitive book on Python?swilliams2008-10-06T16:20:41Z2008-10-06T16:20:41Z<p>Kind of a duplicate.</p>
<p><a href="http://stackoverflow.com/questions/17988/how-to-learn-python">http://stackoverflow.com/questions/17988/how-to-learn-python</a></p>
<p><a href="http://stackoverflow.com/questions/22873/language-bookstutorials-for-popular-languages">http://stackoverflow.com/questions/22873/language-bookstutorials-for-popular-languages</a></p>
<p><a href="http://stackoverflow.com/questions/34570/what-is-the-best-quick-read-python-book-out-there">http://stackoverflow.com/questions/34570/what-is-the-best-quick-read-python-book-out-there</a></p>
http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python/175014#1750149Answer by epochwolf for Is there a definitive book on Python?epochwolf2008-10-06T16:21:12Z2008-10-06T16:31:49Z<p>I have to say I like the documentation that comes with the language. This seems to be the definitive reference that's constantly smacked into new people in the #python chatroom on freenode.</p>
<p>Edit: You can download the python documentation to your computer. If you are using Windows the CHM version is excellent.</p>
http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python/175054#1750541Answer by VolkA for Is there a definitive book on Python?VolkA2008-10-06T16:30:34Z2008-10-06T16:30:34Z<p><a href="http://rads.stackoverflow.com/amzn/click/0596009259" rel="nofollow">Programming Python</a> and probably <a href="http://rads.stackoverflow.com/amzn/click/0672328623" rel="nofollow">Python Essential Reference</a> - and of course <a href="http://docs.python.org" rel="nofollow">docs.python.org</a> can be considered the most complete/useful/up-to-date reference (for offline use see the <a href="http://docs.python.org/download.html" rel="nofollow">Download</a> section).</p>
http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python/175059#1750592Answer by John Mulder for Is there a definitive book on Python?John Mulder2008-10-06T16:31:41Z2008-10-06T16:31:41Z<p><a href="http://rads.stackoverflow.com/amzn/click/0132269937" rel="nofollow"><strong>Core Python Programming</strong></a><br />
It gives a thorough discussion of the core language, including some very lucid discussion of the wonkier aspects of the language (such as generators, list comprehensions). I found the coverage of the built in data structures very handy. This book is a good reference. </p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0596009259" rel="nofollow"><strong>Programming Python</strong></a>
A good tutorial that walks through a lot of the libraries and gives plenty of motivating examples. I think this is a great book to start on the language.</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0672328623" rel="nofollow"><strong>Python Essential Reference</strong></a><br />
Good reference on the standard library. Getting a little dated though.</p>
http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python/175122#1751220Answer by corey goldberg for Is there a definitive book on Python?corey goldberg2008-10-06T16:47:05Z2008-10-06T16:47:05Z<p>another vote for: Corey Python Programming:<br>
<a href="http://rads.stackoverflow.com/amzn/click/0132269937" rel="nofollow">http://www.amazon.com/Core-Python-Programming-2nd/dp/0132269937</a></p>
http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python/175229#17522910Answer by caseman for Is there a definitive book on Python?caseman2008-10-06T17:06:48Z2008-10-06T17:06:48Z<p>You shouldn't neglect Mark Pilgrim's excellent "Dive into Python":</p>
<p><a href="http://diveintopython.org/" rel="nofollow">http://diveintopython.org/</a></p>
http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python/175571#1755713Answer by codeape for Is there a definitive book on Python?codeape2008-10-06T18:28:04Z2008-10-06T18:28:04Z<ul>
<li>My favorite is <a href="http://rads.stackoverflow.com/amzn/click/0596100469" rel="nofollow">Python in a nutshell</a>. I always have a copy on my desk, as well as on my Safari account.</li>
<li>I also keep the <a href="http://docs.python.org/download.html" rel="nofollow">official documentation</a> on my laptop. </li>
<li>A pydoc HTTP server (<code>pydoc -p portnumber</code>) is always running in the background.</li>
</ul>