减少蜗居时间,亲近大自然。责任是从现在开始就要承担的,父母不再年轻,能回报的时候及时回报,不要总觉得时间还很多,岁月不等人。
本文实例讲述了Python计算程序运行时间的方法。分享给大家供大家参考。具体实现方法如下:
import timedef start_sleep():
time.sleep(3)if __name__ == '__main__':
#The start time
start = time.clock()#A program which will run for 3 seconds
start_sleep()#The End time
end = time.clock()print("The function run time is : %.03f seconds" %(end-start))
# End
希望本文所述对大家的Python程序设计有所帮助。
本文Python计算程序运行时间的方法到此结束。脚跟立定后,你必须拿你自己的力量和技能奋斗。小编再次感谢大家对我们的支持!