vote up 1 vote down star
1

I am just learning python on my ubuntu 8.04 machine which comes with python 2.5 install. Is 2.5 too dated to continue learning? How much of 2.5 version is still valid python code in the newer version?

flag

9.04 official is out ;) I think most webservers are still running 2.4 or 2.5, so no, I wouldn't say it's dated. – Mark Apr 25 at 2:53

7 Answers

vote up 5 vote down check

Basically, python code, for the moment, will be divided into python 2.X code and python 3 code. Python 3 breaks many changes in the interest of cleaning up the language. The majority of code and libraries are written for 2.X in mind. It is probably best to learn one, and know what is different with the other. On an ubuntu machine, the python3 package will install Python 3, which can be run with the command python3, at least on my 8.10 install.

To answer your question, learning with 2.5 is fine, just keep in mind that 3 is a significant change, and learn the changes - ask yourself as you code, "how would this be different in 3, if at all?".

(As an aside, I do wish Ubuntu would upgrade to 2.6 though. It has a nice compatibility mode which tries and points out potential difficulties. But python is in such big use on a modern Linux distro, it can be a difficult change to make)

Here's an article describing 2.6 -> 3's changes

link|flag
1  
I'm fairly certain Ubuntu defaults to 2.6 as of Jaunty (which came out on Thursday). – Samir Talwar Apr 24 at 23:59
1  
@Samir: This is good news, and makes me happy. – Bernard Apr 25 at 0:01
1  
I can confirm that apt-get install python on a RC of Jaunty installed 2.6 – codeape Apr 25 at 6:57
vote up 3 vote down

I don't think it is 'too dated' to use, but there are some really nice features in python 2.6 that make it worth the update. This article will give you the details. As long as you have control of the machine, it is worth it.

link|flag
vote up 3 vote down

Python 2.5 will be fine for learning purposes. In the interest of learning you will probably want to look into the differences that python 3.0 has introduced, but I think most of the Python community is still using Python 2, as the majority of libraries haven't been ported over yet.

If your interested in 2.6 here is a blog post on compiling it on Hardy, there may even be a package for it somewhere out there on the internets.

Follow up, if there is a package I'm not finding it. Self compiling is pretty simple for most things, though I've never tried to compile Python.

link|flag
vote up 3 vote down

I don't have any statistics but my impression is that Python 2.5 is the version most in use today. It is certainly not "dated" - I still use Python 2.5 and I expect that I will be using it for weeks or months yet to come.

If you have Python 2.6 available, though, I would suggest upgrading, as it's still fairly similar to Python 2.5 but will put you in better position for using Python 3.

link|flag
vote up 2 vote down

Also, right now the 2.x branch is the most supported one, so I would also say that it's a good reason to start with that version.

And when the moment comes, you can always switch to Python 3.

link|flag
vote up 2 vote down

Python 2.5 is fine. There are still plenty of people on Python 2.4 and 2.3.

link|flag
vote up 1 vote down

One thing to keep in mind about python 2.6 is that some libraries may not work. Numpy comes to mind..

link|flag
2  
Numpy 1.3.0 does work with Python2.6, it's Scipy that doesn't (as of 4/24/2009, latest is scipy 0.7.0) – dF Apr 25 at 0:08

Your Answer

Get an OpenID
or

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