Python计算程序运行时间的方法
本文实例讲述了Python计算程序运行时间的方法。分享给大家供大家参考。具体实现方法如下:
importtime
defstart_sleep(): time.sleep(3)
if__name__=='__main__': #Thestarttime start=time.clock()
#Aprogramwhichwillrunfor3seconds start_sleep()
#TheEndtime end=time.clock()
print("Thefunctionruntimeis:%.03fseconds"%(end-start))
#End