Python 装饰器(Decorator)

装饰器的语法为 @dec_name ,置于函数定义之前。如:

import atexit @atexit.register def goodbye(): print('Goodbye!') print('Script end here')

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zypdxx.html