摘要: 一、装饰器 装饰器类似于一种动态增加函数功能的方法,使用@语法,放在它要装饰的函数定义处(函数定义的上面),实现为已经存在的函数增加新的功能。 def outer(func): def innter(): print('in the log') func() print('hehe') return 阅读全文
posted @ 2016-08-18 14:41 邵林 阅读(190) 评论(0) 推荐(0) 编辑