为什么Python的timeit()会无休止地执行?

发布于 2024-12-25 12:48:28 字数 177 浏览 3 评论 0原文

当尝试使用 Python 内置模块“timeit”时,如下所示:

timeit.Timer('print "hi"').timeit()

它打印不止一行;这是为什么?它不断地打印“hi”:

hi
hi
hi
hi
...

When trying to use the Python built-in module 'timeit' as follows:

timeit.Timer('print "hi"').timeit()

it prints more than one line; why is that? It keeps printing "hi" endlessly:

hi
hi
hi
hi
...

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

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

发布评论

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

评论(2

Oo萌小芽oO 2025-01-01 12:48:28

timeit 旨在测试极短的代码片段,因此它会多次运行代码并取平均值。默认情况下,它运行 1000000 次。

您可以通过运行它来更改此设置,如下所示:

timeit.Timer('print "hi"').timeit(number=1)

timeit is designed to test extremely short code snippets, so it runs the code many times and averages them. As a default, it runs it 1000000 times.

You can change this by running it as follows:

timeit.Timer('print "hi"').timeit(number=1)
羁绊已千年 2025-01-01 12:48:28

如果您查看文档,您将看到该声明默认执行1000000次。

如果您只想运行它 2 次,则可以将 2 传递给 Timer 类的 timeit() 方法。

timeit.Timer('print "hi"').timeit(2)

If you look at the docs, you will see that the statement will default to executing 1000000 times.

If you only want to run it 2 times, you would pass a 2 to the timeit() method of the Timer class.

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