Python 带有参数的装饰器

Python 带有参数的装饰器,第1张

1. 装饰器带有参数(比如:retry)
import time


def call_out(timeout=0):
    def check_login(func):
        def wrapper(*args, **kwargs):
            print("-------1--------")
            time.sleep(timeout)
            ret = func(*args, **kwargs)
            print("--------2-----------")
            return ret
        return wrapper
    return check_login


@call_out(2)
def print_hello():
    print("hello world")
    return "ok"


print(print_hello())
2. 输出结果
C:\Users\HuJun\PycharmProjects\pythonProject\venv\Scripts\python.exe C:/Users/HuJun/PycharmProjects/pythonProject/daily_tesy/装饰器带有参数.py
-------1--------
hello world
--------2-----------
ok

Process finished with exit code 0

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/867811.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-12
下一篇 2022-05-12

发表评论

登录后才能评论

评论列表(0条)

保存