python 裝飾器例子

def debug(func): def wrapper(word): print("[DEBUG]: enter {}()".format(func.__name__)) return func(word) return wrapper @debug def say_hello(word): print("hello!%s"%(word)
相關文章
相關標籤/搜索