在代码中有时要计算某部分代码运行时间,便于分析。
import time start = time.clock() run_function() end = time.clock() print str(end-start)