1

我在 test.py 中编写了这个简单的代码(在 python 中)。我尝试运行 timeit 并且没有任何错误,但我没有得到有关运行时间的任何信息。你能帮助我吗 ?

import timeit

def functionsWhile():
    "Desc about function"
    lic = 0
    n = 30000
    while lic<= n:
            lic += 1
    #print "test"
    return lic

t = timeit.Timer("functionsWhile()", "from __main__ import functionsWhile")

try:
    t.repeat(3, 2)
except:
    t.print_exc()

我期待一个结果,例如(示例):

$>python test.py
[0.006793975830078125, 0.006793975830078125, 0.006793975830078125]
$>

但我只有:

$>python test.py
$>

我没有 timeit 的结果。我使用 python 2.7 和 linux。

4

1 回答 1

7

试试看print的结果t.repeat

于 2012-05-06T16:02:50.620 回答