摘要: 1 #通用版装饰器 2 def zhuang_shi_qi(func): 3 def inner(*args,**kwargs): 4 print("#"*30) 5 res = func(*args,**kwargs) 6 return res 7 return inner 8 9 @zhuang 阅读全文
posted @ 2020-02-19 15:14 卡子 阅读(119) 评论(0) 推荐(0) 编辑