本文实例讲述了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程序设计有所帮助。
新闻热点
疑难解答