ฉันพยายามค้นหาว่าต้องใช้เวลาเท่าไรในการดำเนินการคำสั่ง Python ดังนั้นฉันจึงดูออนไลน์และพบว่าไลบรารีมาตรฐานมีโมดูลที่เรียกว่าtimeitซึ่งอ้างว่าจะทำอย่างนั้น:
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()
อย่างไรก็ตามสิ่งนี้ก่อให้เกิดข้อผิดพลาด:
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
ฉันยังใหม่กับ Python และฉันไม่เข้าใจปัญหาการกำหนดขอบเขตทั้งหมดที่มี แต่ฉันไม่รู้ว่าทำไมตัวอย่างข้อมูลนี้ใช้ไม่ได้ ความคิดใด ๆ ?