如何比较 python 函数的性能?
我已经编写了两个函数来做完全相同的事情,但我不知道哪个更快更好。如何比较这两个函数,看看哪一个在性能和其他方面更好?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
timeit
模块就可以了。The
timeit
module will do ya.一旦您使用 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.