博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 装饰器
阅读量:5098 次
发布时间:2019-06-13

本文共 382 字,大约阅读时间需要 1 分钟。

def log(func):      def wrapper():          print("开始执行")          func()          print("执行完毕")      return wrapper def log_in(func):     def wrapper():         print("开始进入...")         func()         print("结束...")     return wrapper @log @log_in def hello():     print('hello world') if __name__ == '__main__':     hello()

转载于:https://www.cnblogs.com/ericblog1992/p/11290013.html

你可能感兴趣的文章
Palindrome
查看>>
窗体中拖动panel,并且不会拖动至窗体外部程序实现方法。
查看>>
vb中从域名得到IP及从IP得到域名
查看>>
一步步跨过学习中一道道的坎
查看>>
RxJava入门优秀博客推荐
查看>>
基于Selenium2+Java的UI自动化(5) - 执行JavaScript脚本
查看>>
bc https://en.wikipedia.org/wiki/Gossip_protocol
查看>>
saltstack---自动化运维平台
查看>>
Java注释@interface的用法【转】
查看>>
妙味——操作元素属性的几种方法
查看>>
Ring 0 Inline Hook
查看>>
Linux man C++ 库函数
查看>>
PE结构对照表
查看>>
复杂性渐近阶的重要性
查看>>
Rectangle and Square(判断正方形、矩形)
查看>>
js数组创建两种方法
查看>>
IOS自得其乐系列(一)-------------------加载动态图片
查看>>
Function Spec
查看>>
关于我 Jake Lin
查看>>
hue简单介绍
查看>>