我在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。
答案 0 :(得分:6)
尝试print
t.repeat
的结果。