多层装饰器
摘要:1 def decorate1(func1): 2 def wrapper1(): 3 print(f'wrapper1 >{wrapper1}') 4 print(' decorate1 start ') 5 print(f'func1 >{func1}') 6 func1() 7 print('
阅读全文
posted @ 2021-10-03 20:42
posted @ 2021-10-03 20:42
posted @ 2021-10-03 17:44