摘要: 1. 装饰器 # 无参装饰器,这里的参数是指在使用装饰器的时候的参数 import functools def wrapper(func): @functools.wraps(func) def inner(*args, **kwargs): start_time = time.time() res 阅读全文
posted @ 2020-06-17 15:11 10132714 阅读(107) 评论(0) 推荐(0) 编辑