python装饰器

Posted 菜鸟程序员_python

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python装饰器相关的知识,希望对你有一定的参考价值。

1.装饰器的基本使用

# 注意程序运行步骤
def decorator(func): # 这里的参数func其实就是foo函数
    def inner():
        print("1.程序第一步执行到这里")
        func() # 这里的func函数其实就是foo函数
        print(3.这是inner函数)
    return inner
def foo():
    print(2.这是foo函数)
foo = decorator(foo)
foo()

 

以上是关于python装饰器的主要内容,如果未能解决你的问题,请参考以下文章

[TimLinux] Python 装饰器

python装饰器

python装饰器关键代码

Python装饰器

python之装饰器

python 装饰器