Python 函数/高阶函数

Posted 思此狂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 函数/高阶函数相关的知识,希望对你有一定的参考价值。


def add(x,y,f):
    return f(x) + f(y)

def make(x):
    return x + 10
print add(3,-8,make) #输出的结果就是15

编写高阶函数,就是让函数的参数能够接收别的函数。

 

以上是关于Python 函数/高阶函数的主要内容,如果未能解决你的问题,请参考以下文章

python之高阶函数

python中的高阶函数

python专题高阶函数

python专题高阶函数

python 高阶函数

初识python:高阶函数