Ich versuche herauszufinden, wie viel Zeit es dauert, eine Python-Anweisung auszuführen. Deshalb habe ich online nachgesehen und festgestellt, dass die Standardbibliothek ein Modul namens timeit bereitstellt , das genau das vorgibt:
import timeit
def foo():
# ... contains code I want to time ...
def dotime():
t = timeit.Timer("foo()")
time = t.timeit(1)
print "took %fs\n" % (time,)
dotime()
Dies führt jedoch zu einem Fehler:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 3, in dotime
File "/usr/local/lib/python2.6/timeit.py", line 193, in timeit
timing = self.inner(it, self.timer)
File "<timeit-src>", line 6, in inner
NameError: global name 'foo' is not defined
Ich bin noch neu in Python und verstehe nicht alle Scoping-Probleme, aber ich weiß nicht, warum dieses Snippet nicht funktioniert. Irgendwelche Gedanken?