Python 3 introduces significant changes and is not backwards compatible. If you are an experienced Python user, how are you affected? How much do you need to relearn? How long will you wait before you adopt it? What version of Python do you think is easier for a beginner to pick up?
|
|
|||||||||
|
closed as exact duplicate by S.Lott Dec 11 '08 at 12:27 |
|
|
I can't comment personally because I have yet to work with it but I think you will find these two blog posts arguing for and against the backwards-incompatible changes in Python 3. |
|||
|
|
|
|
The clean up of string/unicode is the main attraction for me. I'm also interested in the new Advanced String Formatting (also added in 2.6). I use several python scripts to help me with daily tasks, and my dev team does some python scripting that is provided to the end user. I'll probably take a look at the library support and think about moving over to 3.0 after about a year. Until then, I have it installed already and will play with it on ocassion. The 3.0 vs. 2.X learning question has been asked: http://stackoverflow.com/questions/282819/is-it-worth-learning-python-26-with-30-coming http://stackoverflow.com/questions/345255/python-version-for-a-newbie |
|||
|
|
|
|
I read over the spec, and it seems that the changes are not huge. It looks like a lot of effort has gone into cleaning up loose ends and making the whole language more "unified" (loose concept, I know, but it's a language-feel kind of thing). For a beginner, I think either one would be just as easy to learn. However, the biggest problem we will have with Python 3000 for the time being is lack of 100% compatible 3rd party libraries. This could hurt beginners who get into Python 3000 and then are disappointed and frustrated by lack of working external libraries - these libraries are a huge selling feature of the language - hooked me for sure. Until that happens, any beginner should learn python 2.5 (or 2.6) and simply get familiar of what is up and coming in 3000. |
||
|
|
|
|
Backwards-incompatibility is what bugs me the most, but weighing the pros and cons, this revision of python appears to be more of a benefit to my coding practices than a hinder. |
|||
|
|
|
|
We have a fairly big project in python, with quite a lot of C extensions. As a matter of fact, we are currently evaluating migration from 2.3 to 2.6; migration to version 3.0 may have a cost too high for all of our extensions. Maybe in 4-5 years. It is not a matter of differences. The language is almost the same, only better. But we would have to migrate too many things, and our focus is on delivering features, not using bleeding edge technology. |
||
|
|
|
|
I like some of the new semantics python 3 offers, as well as some of the cleanups that it introduces (goodbye primitive print!), and I'd port what I'm working on to it except that I rely heavily on several third-party packages (pytables and numpy), and I don't really understand the implications for them just yet. Once they have stable python-3.0 versions, I'll migrate too. |
||
|
|
