码迷,mamicode.com
首页 > 其他好文 > 详细

装饰器

时间:2017-05-27 16:14:20      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:port   装饰器   bubble   print   sleep   name   star   art   import   

__author__ = "bubble"

import time
def timer(name):
print(name)
def fuck(func):
def get_time(*agrs, **kwargs):
start_time = time.time()
func(*agrs, **kwargs)
end_time = time.time()
print("耗时%s" % (end_time - start_time))
return get_time
return fuck

@timer(name="qixuelong") #say_hello = timer()
def say_hello(name="111", age=7):
time.sleep(3)
print("名字%s年龄%d" % (name, age))

say_hello()

装饰器

标签:port   装饰器   bubble   print   sleep   name   star   art   import   

原文地址:http://www.cnblogs.com/cancelbubble/p/6913169.html

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