I keep hearing that Dive Into Python 3 is more pythonic than Dive Into Python. I have some experience in programming, but at the same time I'm new to Python (only went thru the official tutorial so far). I will be using Python 2.x at work. Would it make sense to use Dive Into Python 3 to learn Python 2.x?

link|improve this question
feedback

2 Answers

Yes. The difference between python versions isn't too big, and from what I've read from reviews, Dive Into Python 3 is more "consumable" than the original book.

Just have the python 2 reference at hand when you're programming, so you'll quickly find what is different and how to change it to be py2 compliant. The reference tip is applicable in all situations anyways.

link|improve this answer
feedback

No, it doesn't make sense. Use Dive Into Python for Python 2 and Dive into Python 3 for Python 3, it's going to be much more painless.

Sure, apparently Dive into Python 3 now follows PEP 8, but you don't have to break PEP 8 just because the book you learned Python from did. :-)

What you can do, is to learn Python 3 from Dive into Python 3. Then it's easy to use Python 2 after, the differences aren't that big. But a handy reference is good to have there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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