6月4日·复习·
Posted zhaoweihang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6月4日·复习·相关的知识,希望对你有一定的参考价值。
今天讲了装饰器,没什么好说的,太简单。
from functools import wraps
这个模块是用来保存原来函数的文档,名字之类的
def outter(func)
@wraps(func)
def inner(*args,**kwargs)
#要做的事
res=func(*args,**kwargs)
return res
return inner
以上是关于6月4日·复习·的主要内容,如果未能解决你的问题,请参考以下文章