小能豆

什么是 Python 中的装饰器?

py

什么是 Python 中的装饰器?


阅读 7

收藏
2024-11-06

共1个答案

小能豆

装饰器是用于修改或增强函数功能的函数。它是一个返回函数的函数,通常用于在不修改原函数代码的情况下增加功能。

示例

def decorator(func):
    def wrapper():
        print("函数被装饰了")
        func()
    return wrapper

@decorator
def say_hello():
    print("Hello")

say_hello()

输出:

Hello
2024-11-06