Where I can find a comparative speed benchmark between python versions?
For example the performance between 2.6, 2.7, 3.0 , 3.1 and 3.2 versions.
Where I can find a comparative speed benchmark between python versions?
For example the performance between 2.6, 2.7, 3.0 , 3.1 and 3.2 versions.
There is a Python module with various real-world performance tasks to measure different builds / versions of Python -
performance
.You can install it with the following command:
And run it with the following one to compare Python2 and Python3 on your system:
Pystone benchmark on 2.6,2.7,3.2:
(3.0 and 3.1 are probably slower than 3.2)