Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
3  
Overall performance is way too broad a topic. – Martijn Pieters Feb 12 at 17:16
2  
Why not time it and see? Generally, there is no good answer for questions this broad -- Ultimately, it probably depends on what part of python you're using. – mgilson Feb 12 at 17:16
I'm just using pretty basic features and dot products of large matrices in numpy. I added a list of specifics I'm wondering about, hopefully that's more concrete. – Jon Tedesco Feb 12 at 21:37
1  
numpy performance would probably more depend on the numpy version, not Python version... – Lev Levitsky Feb 12 at 21:37

closed as not constructive by Wooble, Martijn Pieters, wRAR, Jon-Eric, Abid Rahman K Feb 12 at 17:50

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.