Talking about decorators

The principle of decorators

@make_bold
def get_content():
    return 'hello world'

# 上面的代码等价于下面的

def get_content():
    return 'hello world'
get_content = make_bold(get_content)

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324491984&siteId=291194637