python中如何计算程序运行时间?
python中如何计算程序运行时间?
How do you calculate program run time in python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
python中如何计算程序运行时间?
How do you calculate program run time in python?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
快速替代方案
Quick alternative
我不知道这是否是一个更快的选择,但我有另一个解决方案 -
I don't know if this is a faster alternative, but I have another solution -
您可能想查看
timeit
模块:http://docs.python.org /library/timeit.html
或
profile
模块:http://docs. python.org/library/profile.html
这里还有一些不错的教程:
http:// www.doughellmann.com/PyMOTW/profile/index.html
http://www.doughellmann.com /PyMOTW/timeit/index.html
并且
time
模块也可能会派上用场,尽管我更喜欢后面两个关于基准测试和分析代码性能的建议:http://docs.python.org/library/time.html
You might want to take a look at the
timeit
module:http://docs.python.org/library/timeit.html
or the
profile
module:http://docs.python.org/library/profile.html
There are some additionally some nice tutorials here:
http://www.doughellmann.com/PyMOTW/profile/index.html
http://www.doughellmann.com/PyMOTW/timeit/index.html
And the
time
module also might come in handy, although I prefer the later two recommendations for benchmarking and profiling code performance:http://docs.python.org/library/time.html
@JoshAdel 涵盖了很多内容,但如果您只想计算整个脚本的执行时间,您可以在类 Unix 系统上的
time
下运行它。@JoshAdel covered a lot of it, but if you just want to time the execution of an entire script, you can run it under
time
on a unix-like system.看到这个:
Python - time.clock() 与 time.time() - 准确性?< /a>
see this:
Python - time.clock() vs. time.time() - accuracy?