Is there a definitive book on Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T15:07:21Z http://stackoverflow.com/feeds/question/175001 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python 3 Is there a definitive book on Python? Electrons_Ahoy 2008-10-06T16:19:13Z 2008-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&amp;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#175009 6 Answer by Joe Skora for Is there a definitive book on Python? Joe Skora 2008-10-06T16:20:22Z 2008-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#175011 6 Answer by swilliams for Is there a definitive book on Python? swilliams 2008-10-06T16:20:41Z 2008-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#175014 9 Answer by epochwolf for Is there a definitive book on Python? epochwolf 2008-10-06T16:21:12Z 2008-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#175054 1 Answer by VolkA for Is there a definitive book on Python? VolkA 2008-10-06T16:30:34Z 2008-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#175059 2 Answer by John Mulder for Is there a definitive book on Python? John Mulder 2008-10-06T16:31:41Z 2008-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#175122 0 Answer by corey goldberg for Is there a definitive book on Python? corey goldberg 2008-10-06T16:47:05Z 2008-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#175229 10 Answer by caseman for Is there a definitive book on Python? caseman 2008-10-06T17:06:48Z 2008-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#175571 3 Answer by codeape for Is there a definitive book on Python? codeape 2008-10-06T18:28:04Z 2008-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>