摘要: import time from functools import wraps def timethis(func): ''' Decorator that reports the execution time. ''' @wraps(func) def wrapper(*args, **kwarg 阅读全文
posted @ 2021-11-18 16:15 米开朗菠萝 阅读(110) 评论(0) 推荐(0)