码迷,mamicode.com
首页 > 编程语言 > 详细

python3练习-装饰器

时间:2017-01-10 13:28:28      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:begin   print   调用   exec   装饰器   学习   blog   other   pass   

  在廖雪峰的官方网站学习装饰器章节时,初步理解类似与面向切面编程。记录一下自己的课后习题解法。

问题:
请编写一个decorator,能在函数调用的前后打印出begin callend call的日志。
写出一个@log的decorator,使它既支持:
@log
def f():
    pass

又支持:
@log(‘execute‘)
def f():
    pass
示例代码(个人练习,如有问题欢迎斧正):
# ! usr/bin/env python3
# -*- coding:utf-8 -*-


import functools

def log(*text):
    def decorator(func):
        @functools.wraps(func)
        def warpper(*args,**kw):
            if(isinstance(text,(list,tuple))):
                print(Info: , text)
                print(begin call %s(): % func.__name__)
            else:
                print(begin call %s(): % func.__name__)
            func(*args,**kw)
            print(-------,end call %s(): % func.__name__,--------------)
        return warpper
    return decorator

@log([execute,beginOtherInfo])
def now():
    print(test function)

@log()
def now2():
    print(test function2)
now() now2()

 

python3练习-装饰器

标签:begin   print   调用   exec   装饰器   学习   blog   other   pass   

原文地址:http://www.cnblogs.com/GYoungBean/p/6268662.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!