摘要: python的装饰器 2018-02-26 在了解python的装饰器之前我们得了解python的高阶函数 python的高阶函数我们能返回一个函数名并且能将函数名作为参数传递 def outer(): #函数名作为参数进行返回 print('hello world') def inner(): p 阅读全文