algo_present/some_decorators.py
2024-04-18 17:53:42 +08:00

11 lines
413 B
Python

import time
# 配置装饰器跟踪函数执行,在函数执行前后添加时间计算,并打印每个函数的执行时间
def track_performance(func):
def wrapper(*args, **kwargs):
start_time = time.time()
result = func(*args, **kwargs)
end_time = time.time()
print(f"{func.__name__} 执行了 {end_time - start_time:.10f}")
return result
return wrapper