Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently reading "Dive into Python". While a good book, I assume it can't possibly cover every aspect of Python core language. Am I wrong?

If I'm not, what did you found out after reading the book and wished it was covered inside "Dive into python"?

share|improve this question
Actually, it does cover every single detail of the Python programming language. – robert Feb 11 '11 at 21:53
2  
Other programming languages. – Matt Ball Feb 11 '11 at 21:53
2  
Read the Python tutorial instead or buy a book. – Jochen Ritzel Feb 11 '11 at 22:26
A lot of comments critique Dive into Python for being old, but please notice that there is a new version: Dive into Python 3 – sumek Aug 21 '12 at 22:47

closed as not constructive by Smi, KooKiz, Kevin, Justin Satyr, DarkCthulhu Nov 10 '12 at 22:40

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 2 down vote accepted

just be aware that Dive Into Python was released in 2004. Since then, new releases of the language have added new libraries, features, and idioms.

share|improve this answer
There is a new version: Dive into Python 3 – sumek Aug 21 '12 at 22:49

Here's a pretty good critique of Dive into Python, and I agree with the conclusion. http://oppugn.us/posts/1272050135.html

share|improve this answer
1  
After reading a few pages of Dive into Python, I consider my self lucky that I didn't know that book while learning Python. – utku.zih Feb 11 '11 at 22:18
+1. Dive into Python is awful. – Whatang Feb 12 '11 at 0:35
3  
Dive into Python is a bad choice for a beginner programmer. I'm not a beginner programmer and I like the fact that it "dives right in" and I don't have to read some 50 pages of explanations about a stupid "Hello world!" program or the wonderful "if" statement explained in another 50. It cuts the crap from he beginning. What I failed to realize though is that the book is old (that is why I marked @Corey Goldberg's answer as accepted). I learn from the Python reference and what is not clear upfront I read in other books, Dive into Python being just one of many. I have been warned! – ElenaT Feb 13 '11 at 12:56

Would have been nice to include at least an introduction the Django Framework: http://www.djangoproject.com/

share|improve this answer
4  
While good to learn about, Django is not a part of the 'Python core language' – Gavin H Feb 11 '11 at 21:59
2  
mark would have needed a time machine to achieve that. DiP was published in '04, django initial release was '05. – Corey Goldberg Feb 11 '11 at 22:02
I didn't realize it was written that many years ago! – Chris Abrams Feb 11 '11 at 22:11

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