python测试代码运行速度

from timeit import default_timer as timer
start = timer()

###需要测试的代码,最后输出运行时间,以秒为单位

end = timer()
print(end - start)
阅读量: | 柯西君_BingWong | 2018-10-23