Python 版本性能

发布于 2024-11-29 15:23:24 字数 72 浏览 1 评论 0原文

在哪里可以找到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

回心转意 2024-12-06 15:23:24

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/

暮年 2024-12-06 15:23:24

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)

云淡月浅 2024-12-06 15:23:24

有一个包含各种实际性能任务的 Python 模块,用于测量不同版本的 Python - 性能

您可以使用以下命令安装它:

pip install pyperformance

并使用以下命令运行它以比较系统上的Python2和Python3:

pyperformance run --python=python2 -o py2.json
pyperformance run --python=python3 -o py3.json
pyperformance compare py2.json py3.json

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:

pip install pyperformance

And run it with the following one to compare Python2 and Python3 on your system:

pyperformance run --python=python2 -o py2.json
pyperformance run --python=python3 -o py3.json
pyperformance compare py2.json py3.json
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文