python偏函数

Posted

tags:

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

python中functools.partial模块,可以用来定义偏函数,如:

def func(x, y):
    return x+y
result = func(2,10)
print(result)

运行结果:

12

可以将带默认值的函数,使用functools.partial进行封装,封装后的函数叫做偏函数

def func(x, y, z):
    return x-y-z
func2 = functools.partial(func, 5)
result = func2(2,1)
print(result)

运行结果:

2

函数的默认参数,放在所有参数的左边。

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

[数值计算-11]:多元函数求最小值 - 偏导数与梯度下降法&Python法代码示例

Python 偏函数

Python---偏函数

偏函数

python偏函数

python 偏函数