首页 > 编程 > Python > 正文

Python实现对一个函数应用多个装饰器的方法示例

2020-01-04 15:53:49
字体:
来源:转载
供稿:网友

本文实例讲述了Python实现对一个函数应用多个装饰器的方法。分享给大家供大家参考,具体如下:

下面的例子展示了对一个函数应用多个装饰器,可以加多个断点,在debug模式下,查看程序的运行轨迹。。。

#!/usr/bin/env python#coding:utf-8def decorator1(func):  def wrapper():    print 'hello python 之前'    func()  return wrapperdef decorator2(func):  def wrapper():    func()    print 'hello python 之后'  return wrapper@decorator1@decorator2def test():  print 'hello python!'test()

运行结果:

hello python 之前hello python!hello python 之后

希望本文所述对大家Python程序设计有所帮助。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表