摘要: 内容回顾 多层语法糖 有参装饰器 装饰器模板 装饰器修复技术 递归函数 多层语法糖 def outter1(func1): print('加载了outter1') def wrapper1(*args, **kwargs): print('执行了wrapper1') res1 = func1(*ar 阅读全文
posted @ 2022-10-12 18:52 小福福 阅读(21) 评论(0) 推荐(0) 编辑