摘要: 装饰器的基础使用(装饰带参函数) def decorator(func): def inner(info): print('inner') func(info) return inner @decorator def show_info(info): print(info) show_info('h 阅读全文
posted @ 2021-09-22 15:36 糖烤栗子& 阅读(79) 评论(1) 推荐(0) 编辑