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

Python - 装饰器

时间:2017-12-03 21:53:57      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:imp   tput   put   local   time   name   div   tool   print   

import time
import functools

def exec_time(func):
    def wrapper(*args, **kw):
        print(time.strftime(‘%Y-%m-%d %H:%M:%S‘,time.localtime(time.time())))
        return func(*args, **kw)
    return wrapper

@exec_time
def testfunc():
    print("test function...")

testfunc()
print(testfunc.__name__)

print("=====================")

def exec_time(text):
    def deractor(func):
        @functools.wraps(func)
        def wrapper(*args, **kw):
            print(time.strftime(text, time.localtime(time.time())))
            return func(*args, **kw)
        return wrapper
    return deractor

@exec_time(‘%Y-%m-%d‘)
def testfunc():
    print("test function...")

testfunc()
print(testfunc.__name__)

print("=====================")

def exec_time(text):
    def deractor(func):
        @functools.wraps(func)
        def wrapper(*args, **kw):
            print("begin time:", time.strftime(text, time.localtime(time.time())))
            t = func(*args, **kw)
            print("end time:", time.strftime(text, time.localtime(time.time())))
            return t;
        return wrapper
    return deractor

@exec_time(‘%Y-%m-%d %H:%M:%S‘)
def testfunc():
    print("test function...")

testfunc()
print(testfunc.__name__)

 

output:

2017-12-03 20:50:00
test function...
wrapper
=====================
2017-12-03
test function...
testfunc
=====================
begin time: 2017-12-03 20:50:00
test function...
end time: 2017-12-03 20:50:00
testfunc

 

Python - 装饰器

标签:imp   tput   put   local   time   name   div   tool   print   

原文地址:http://www.cnblogs.com/hfultrastrong/p/7967214.html

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