Python 3 is significantly slower because of it representing all string internally as ucs 2 or 4
Most 3rd party modules haven't been ported/have bugs with python 3
Note that using __future__ you can write code that will run correctly on both 2.6+ and 3.0. For new projects that's what I would recommend
|