【说站】python操作带参的装饰器
2024-11-29
16
python操作带参的装饰器
说明
1、装饰函数的第一个参数是装饰func,和以前一样。
2、另一个参数timelimit是用位置参数写的,有默认值。
3、和原来一样使用了可变参数的写法。
实例
from decorator import decorator @decorator def warn_slow(func, timelimit=60, *args, **kw): t0 = time.time() result = func(*args, **kw) dt = time.time() - t0 if dt > timelimit: logging.warn('%s took %d seconds', func.__name__, dt) else: logging.info('%s took %d seconds', func.__name__, dt) return result @warn_slow(timelimit=600) # warn if it takes more than 10 minutes def run_calculation(tempdir, outdir): pass
以上就是python操作带参装饰器的介绍,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
赞一波!2
相关文章
- 【说站】python类的继承如何定义?
- 【说站】python函数返回多个返回值
- 【说站】python类的继承链分析
- 【说站】python静态方法如何定义
- 【说站】python特殊方法有哪些
- 【说站】python类方法如何定义
- 【说站】python用内置函数进行判断
- 【说站】python函数接收不同类型的参数
- 【说站】python range()函数指定数值
- 【说站】python zipfile模块的文件操作
- 【说站】python opencv如何旋转图片
- 【说站】python help()获取函数信息
- 【说站】python关键字参数的多种使用
- 【说站】python九宫格图片的原理
- 【说站】python参数默认值如何使用
- 【说站】python sorted()函数的参数用法
- 【说站】python文件导入相对路径
- 【说站】python输入一个列表求平均值
- 【说站】python shutil模块如何操作文件
- 【说站】python每行输出五个数
文章评论
评论问答