If I'm going to learn Python, should I learn 2.x or just jump into 3.0? - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-01T01:11:04Z http://stackoverflow.com/feeds/question/410609 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/410609/if-im-going-to-learn-python-should-i-learn-2-x-or-just-jump-into-3-0 0 If I'm going to learn Python, should I learn 2.x or just jump into 3.0? [closed] Bob Somers 2009-01-04T07:30:02Z 2009-01-04T11:05:44Z <p>Maybe I'm old school, but when I sit down to really tackle a new language I like to buy whatever the definitive book is for that language rather than mess around with tutorials and online intro "toys" to the language.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0596100469" rel="nofollow">Python in a Nutshell</a> has gotten glowing reviews on Amazon, but it's written around Python 2.5. So far it looks like <a href="http://rads.stackoverflow.com/amzn/click/0137129297" rel="nofollow">Programming in Python 3</a> is the only Python 3 book on the block, without any reviews to vouch for it.</p> <p>If any of you current Pythonistas were to start learning the language right now, would you buy the "nutshell" book and continue working with the 2.x branch, or is Python 3 going to be taking over soon? From what I understand there are some significantly incompatible differences in the versions, which is why I ask.</p> <p>I've been coding for a while if that makes a difference. I don't need an intro to programming, just coverage of the language.</p> <p>Thanks everyone.</p> http://stackoverflow.com/questions/410609/if-im-going-to-learn-python-should-i-learn-2-x-or-just-jump-into-3-0/410626#410626 4 Answer by Jonathan Leffler for If I'm going to learn Python, should I learn 2.x or just jump into 3.0? Jonathan Leffler 2009-01-04T07:44:23Z 2009-01-04T07:44:23Z <p>If you're going to work with old Python code, it is probably a good idea to have some knowledge of Python 2.x, simply to be aware of the differences. If you're starting from scratch and won't need to deal with any 2.x code, learn just 3.x.</p> <p>It is probably a year or two too soon to really only learn Python 3.x.</p> http://stackoverflow.com/questions/410609/if-im-going-to-learn-python-should-i-learn-2-x-or-just-jump-into-3-0/410636#410636 4 Answer by Imran for If I'm going to learn Python, should I learn 2.x or just jump into 3.0? Imran 2009-01-04T07:55:11Z 2009-01-04T07:55:11Z <p>I've also began learning python recently. I decided to start with 2.5/2.6, as almost all 3rd party libraries are still only 2.5/2.6 compatible. The difference between 2.5/2.6 and 3.0 doesn't seem really big. When 3.x becomes mainstream one should be able to switch easily.</p> <p>BTW, I read Mark Summerfield's PyQt book's introductory Python chapters. They were quite helpful. I'd say a book from him is definitely worth looking into.</p> http://stackoverflow.com/questions/410609/if-im-going-to-learn-python-should-i-learn-2-x-or-just-jump-into-3-0/410706#410706 0 Answer by Autoplectic for If I'm going to learn Python, should I learn 2.x or just jump into 3.0? Autoplectic 2009-01-04T09:05:25Z 2009-01-04T09:05:25Z <p>Magnus Lie Hetland's <a href="http://rads.stackoverflow.com/amzn/click/1590599829" rel="nofollow">Beginning Python: From Novice to Professional, Second Edition</a> supposedly covers python 3. i haven't read the second edition, but i loved the first edition. and as the others said, if you're going to be using any libraries you might as well learn python 2 since a) at least at a high level, the backwards incompatible changes are fairly minor and b) all the libraries will be on 2.x for a probably a year or so.</p> http://stackoverflow.com/questions/410609/if-im-going-to-learn-python-should-i-learn-2-x-or-just-jump-into-3-0/410829#410829 0 Answer by Cheery for If I'm going to learn Python, should I learn 2.x or just jump into 3.0? Cheery 2009-01-04T10:59:34Z 2009-01-04T10:59:34Z <p>python3 is not different from python2.5 by couple of basic things. There's some things that behave different though.</p> <p>I'd propose you to use python3 because they have fixed the problem with unicode and normal strings. Unicode strings are the strings and what they called 'str' is not a string now.</p> <p>Only reason to use python2.5/2.6 is if you want to use libraries outside the standard libraries. Some of those may have python3 support already though.</p> http://stackoverflow.com/questions/410609/if-im-going-to-learn-python-should-i-learn-2-x-or-just-jump-into-3-0/410838#410838 1 Answer by wzzrd for If I'm going to learn Python, should I learn 2.x or just jump into 3.0? wzzrd 2009-01-04T11:05:44Z 2009-01-04T11:05:44Z <p>while there are enough differences, python 3 is not a new language. And python 2.x will be here for a long time still. Imho you're safe to start learning python 2. Keep in mind btw, that 'Python in a nutshell' is a (good) reference guide, <em>not</em> a tutorial!</p>