Python 版本性能
在哪里可以找到 python 版本之间的比较速度基准?
例如2.6、2.7、3.0、3.1和3.2版本之间的性能。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Python 软件基金会在 https://speed.python.org/comparison/ 上托管了一个速度比较网站它提供了不同基准的概述。
目前,它仅包括 CPython 版本(仍然受支持),但 PyPy 有一个类似的站点:https:// speed.pypy.org/comparison/
The Python Software Foundation hosts a speed comparison site at https://speed.python.org/comparison/ that provides an overview of different benchmarks.
Currently, it only includes CPython versions (that are still supported) but PyPy has a similar site available at: https://speed.pypy.org/comparison/
2.6,2.7,3.2 上的 Pystone 基准测试:
(3.0 和 3.1 可能是 慢于 3.2)
Pystone benchmark on 2.6,2.7,3.2:
(3.0 and 3.1 are probably slower than 3.2)
有一个包含各种实际性能任务的 Python 模块,用于测量不同版本的 Python -
性能
。您可以使用以下命令安装它:
并使用以下命令运行它以比较系统上的Python2和Python3:
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: