python: Decorators

发布时间 2023-06-11 15:49:45作者: ®Geovin Du Dream Park™

 

 

#装饰器
def printpy(func):
    def inner_func():
        func()
        print("hello python! Geovin Du")
    return inner_func
# @装饰器
@printpy
def printhello():
    print("hello world!")


#调用
printhello()