Can somebody recommend a good python learning book, along the lines of "Learning Python", but a little more "quick", (more concise). Although I like "Learning" series from O'Reilly, with Python they've really taken their time. Preferably something up to 300-400 pages ?

I'd be grateful for all your advices.

link|improve this question
4  
This question has been answered many times on SO. Search for "Python book" – Triptych Jun 1 '09 at 14:09
I did, and it comes down to either "Learning python" or "Dive into python" (which I found completely unusable for my level, it starts with some advanced things which I don't understand" - that's why I asked for something like "Learning" python but something which doesn't explain the for loop on 5 pages :-) – Richard Jun 1 '09 at 14:17
@Richard Your question should probably have made itself stand out from the other identical questions by stating something like "... aside from Dive Into Python ..." Dive Into Python is great, and if you're stuck on something specific: ask about that, hop on IRC, or similar. A book that helped me quickly grasp a few differences when transitioning from PHP was the $14 "Python Phrasebook". – anonymous coward Jun 1 '09 at 14:24
@Richard: Could you Update the question with the ways each of these books fails to meet your needs? – S.Lott Jun 1 '09 at 15:16
My guess is your'e looking for a "concise" introduction, in the same vein as the 10-page Intro to Perl (perldoc.perl.org/perlintro.html) or K&R's C Programming language, or the first edition of Stroustrup's C++ Programming language. Where you can read it in one evening and say, with a small bit of authority, "I know kung-f... err, Python!" Most programming books, sadly, aren't written this way, so I think this question really belongs here for those of us that do not want to read a 700 page tome. – J. Polfer Jun 1 '09 at 15:58
show 1 more comment
feedback

6 Answers

There are quite a few good books online. These have a broad scope, similar to O'Reilly's "Learning Python":

Python.org maintains two lists of for learning python, depending on your level of programming expertise:

I highly recommend "Python Essential Reference" by David Beazley. You might find this sufficient if you're an experienced programmer and want a concise and comprehensive overview of the language. If you're a novice programmer this probably won't provide enough hand-holding. While I learned Python from other books, this is—by far—the most useful python book I own. Some notes:

  • This is a reference book not a tutorial
  • If you're an experienced programmer, this should be enough to learn the language
  • If you're a novice programmer, start with a different tutorial
  • The first 125 pages are a complete overview of the language. It's not a tutorial, but it covers the language from top to bottom
  • The rest of the book is a comprehensive and extremely useful reference
  • The 3rd edition covers up to python 2.4, but not beyond.
  • The 4th edition is due for release in July 2009
link|improve this answer
Good answer, could you post it on stackoverflow.com/questions/34570/… should this question be closed..? – dbr Jun 2 '09 at 15:47
1  
Done: answer posted. – Karl Fast Jun 3 '09 at 11:20
Does the 4th edition cover python 3 or 2.6? – Dave Berk Jun 25 '09 at 14:58
feedback

Have you looked at the official python tutorial http://docs.python.org/tutorial/? It starts quick enough and covers most of the basics. That's how I started learning Python.

link|improve this answer
+1; Guido's tutorial is very concise and quite good; it's how I learned too. – J. Polfer Jun 1 '09 at 16:01
feedback

You could try "Python in a Nutshell" by Alex Martelli. All books in the series have a quick introduction to the language (the rest of the book is an API reference). I like the "in a Nutshell" series a lot because it works for someone who already knows some other programming language and has very little time to read -- but YMMV...

link|improve this answer
feedback

First, if the usual searches have come up with answers you can't use, put that in the question up front. Otherwise, at best you'll get all the answers you can't use all over again. (At worst your question will be closed so fast nobody will notice it.) I'd suggest editing the question.

Second, your comment says that "Dive Into Python" starts with material too advanced for you. This suggests that a more verbose introduction might be good for you.

Third, the book you want simply may not exist. You have rejected the two main recommendations, one as too verbose and one as too advanced. There may be a niche for something in between "Dive Into Python" and "Learning Python", but there may not be a book there, or all the books there may be bad. You are very likely asking for a book that simply doesn't exist, since you have problems with the usual recommendations.

link|improve this answer
feedback

Python Visual Quickstart Guide

See my answer here

link|improve this answer
feedback

Dive Into Python is fairly concise - and available for free, online. My printed copy ends on page 400 (including appendices but excluding the index).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown