如何比较 python 函数的性能?

发布于 2024-12-13 02:50:07 字数 65 浏览 0 评论 0原文

我已经编写了两个函数来做完全相同的事情,但我不知道哪个更快更好。如何比较这两个函数,看看哪一个在性能和其他方面更好?

I have written 2 functions doing the exact same thing, but I don't know which one is faster and better. How do I compare these 2 functions to see which one is better in terms of performance and everything?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

穿越时光隧道 2024-12-20 02:50:07

timeit 模块就可以了。

The timeit module will do ya.

童话 2024-12-20 02:50:07

一旦您使用 timeit 模块找出哪个函数更快,您还可以获得使用 profile 模块可以更准确地了解差异所在。

Once you've found out which function is faster using the timeit module, you can also get more precise details of where the differences are by using the profile module.

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