python装饰器
https://www.runoob.com/w3cnote/python-func-decorators.html 基本理解 test这个函数作为变量被传递到decorator函数。 在decorator里嵌套一个wrap函数,作用是改变test函数的内容。 返回wrap这个函数名 这时执行test()的本质就是,test函数被替换成了wrap。执行的是wrap里面的内容。 def decorator(func): def wrap(): url = func() return 'http://' + url return wrap @decorator def test(): return 'www.changyou.com' print(test()) functools.wraps 如下,打印test.__name__时,是wrap。函数被替代了。 def decorator(func): def wrap(): url = func() return 'http://' + url return wrap @decorator def test(): return 'www.changyou.com' print(test.__name__) functools.wraps用于解决这个问题 from functools import wraps def