PySe-024-装饰器模型源码

无参装饰器模型源代码: 1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 4 import time 5 6 # 无参装饰器模型 7 def decorator(func): 8 def wrapper(*args, **kwargs): 9 "
posted @ 2022-02-19 17:38  范丰平  Views(36)  Comments(0Edit  收藏  举报