首页 > 代码库 > py装饰器

py装饰器

 

def login(func):    print login success!    func()def tv():    print tv pagetv=login(tv)##################################################def login(func):    print login success!    return funcdef tv():    print tv pagetv=login(tv)tv()##################################################def login(func):    def inner():        print login success!        return func    return innerdef tv():    print tv pagetv=login(tv)# tv()##################################################def login(func):    def inner():        print login success!        return func    return innerdef tv():    print tv pagetv=login(tv)# tv()##################################################def login(func):    def inner():        print login success!        func()    return innerdef tv():    print tv pagetv=login(tv)tv()##################################################

 

py装饰器