摘要: 一.装饰器的简易版本 # 统计函数的执行时间 import time def index(): time.sleep(2) print('from index') def home(): time.sleep(3) print('from home') def outer(func): # func 阅读全文
posted @ 2022-01-10 20:11 morningstar999 阅读(46) 评论(0) 推荐(0)