Python 时间问题

发布于 2024-09-28 10:41:35 字数 356 浏览 4 评论 0原文

我正在尝试使用 timeit 模块,但我不知道如何使用。 我有一个 main:

from Foo import Foo
if __name__ == '__main__':
...
   foo = Foo(arg1, arg2) 
   t = Timer("foo.runAlgorithm()")
   print t.timeit(2)

并且我的 Foo 类有一个名为 runAlgorithm() 的方法,

错误是这样的:

NameError:全局名称“foo”未定义

我做错了什么? 我可以从类方法中抽出时间吗?

I'm trying to use the timeit module but I don't know how.
I have a main:

from Foo import Foo
if __name__ == '__main__':
...
   foo = Foo(arg1, arg2) 
   t = Timer("foo.runAlgorithm()")
   print t.timeit(2)

and my Class Foo has a method named as runAlgorithm()

the error is this:

NameError: global name 'foo' is not defined

What am I doing wrong?
Can I take the time from a class method?

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

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

发布评论

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

评论(2

就像说晚安 2024-10-05 10:41:35

而不是使用必要的 setup 参数设置 timeit 环境,您可以简单地传递方法(或任何可调用的内容):

t = Timer(foo.runAlgorithm)

来自文档:

版本 2.6 中的更改:stmt 和 setup 参数现在也可以采用无需参数即可调用的对象。

如果需要传递一些参数,可以使用 functools 进行函数柯里化。部分,例如:

class C:
    def printargs(self, a, b):
        print a, b

from functools import partial
foo = C()
t = Timer(partial(foo.printargs, 1, 2))

Instead of using the necessary setup parameter for setting up the timeit environment, you can simply pass the method (or anything that is callable):

t = Timer(foo.runAlgorithm)

From the documentation:

Changed in version 2.6: The stmt and setup parameters can now also take objects that are callable without arguments.

If you need to pass some arguments, you can use function currying with functools.partial, for example:

class C:
    def printargs(self, a, b):
        print a, b

from functools import partial
foo = C()
t = Timer(partial(foo.printargs, 1, 2))
南街九尾狐 2024-10-05 10:41:35

正如文档示例所示,您需要传递setup语句:

t = Timer("foo.runAlgorithm()", 'from __main__ import foo')

as docs example show you need to pass setup statements:

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