python 装饰器

宿舍 2020-02-02

‘‘‘概念:是一个闭包,把一个函数当做参数,返回一个替代版的函数,本质上就是一个返回函数的函数‘‘‘#简单的装饰器def func1():    print("sunck is a good man")def outer(func):    def inner():        print("*******************")        func()    return inner#f是函数func1的加强版本f = outer(func1)f()

相关推荐