码迷,mamicode.com
首页 > 其他好文 > 详细

通用装饰器

时间:2021-06-02 12:04:33      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pre   for   class   before   *args   wrapper   span   war   style   

通用装饰器

def wrapper(fun):
    def inner(*args,**kwargs):
        print(f"before execute target {fun} ")
        ret=fun()
        print(f"after execute target {fun}")
        return ret
    return inner

@wrapper
def fun(*args,**kwargs):
    print("test")
    return 1

 

通用装饰器

标签:pre   for   class   before   *args   wrapper   span   war   style   

原文地址:https://www.cnblogs.com/yan-2010/p/14814982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!