#高阶函数:1函数接收的参数是一个函数名2返回值中包含函数 def fo(): print('hello') return fo#这就是一个高阶函数 。。。 fo(han('cat'))#这也是一个高阶函数