摘要: 装饰器 装饰器的简易版本 import time def index(): time.sleep(3) print('from index') def home(): print('from home') def func(): print('from func') def outer(func_n 阅读全文