As of now, how does the overall performance / efficiency of Python 2.7 compare to 3.3?
I use Python for academic research, so am always concerned with reducing the time to run experiments, since waiting for experiments to finish tends to waste a lot of time.
I'm most interested in a comparison for simple numpy matrices and fundamental language features:
- Basic data structures including dictionaries, lists, etc
- Method invocations
- Object creation overhead / memory usage
- Basic file I/O
- Basic matrix operations in numpy (dot product with large float matrices)
Similar questions have appeared for older versions of Python 3 (3.1, 3.2) and have generally said performance was better (if only slightly) in 2.7, but based on this e-mail from the Python-dev mailing list, it looks like Python 3.3 may now be superior 2.7.
numpyperformance would probably more depend on thenumpyversion, not Python version... – Lev Levitsky Feb 12 at 21:37