偏函数

Posted believepd

tags:

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

import functools

def func(a1, a2):
    return a1+a2

# 通常调用方式
# ret = func(10, 20)
# print(ret)

# 偏函数方式,可以自动传递参数
new_func = functools.partial(func, 10)
ret = new_func(20)
print(ret)

 

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

偏函数

python的偏函数

2.关于偏函数

偏函数-functools.partial

函数式编程-偏函数

python基础-装饰器和偏函数