目前我正在使用下面的代码来查找我手动使用开始时间和结束时间的任何例程/功能的经过时间
但是,我希望一个函数应该自动返回整个函数需要多长时间,就像我们运行查询时一样,它用来说明我想要运行任何函数的秒数和毫秒数,每个函数都应该返回我经过的时间时间。
这是我的代码,我对此绝对不满意,我想要高端专业的代码行,请帮助。谢谢。
def ElaspedTime(stime,etime):
from datetime import timedelta
timediff = timedelta(seconds=etime - stime)
return timediff
def STime():
return time.monotonic()
def ETime():
return time.monotonic()
#start_time = time.monotonic()
##call functions here
#end_time = time.monotonic()
#print( ElaspedTime(start_time,end_time))