Python中的偏函数是函数式编程强大工具,主要是减少函数调用的复杂性。可以理解为,将现有函数在某些参数固定下来,构造成一个新的函数。新函数就不用写那么多参数了。
''' 偏函数 ''' from functools import partial def add(a,b): sum=a+b return sum if __name__ == '__main__': add10=partial(add,b=10) sum=add10(1) print(sum)#11
标签:__,partial,函数,sum,add,add10 From: https://www.cnblogs.com/wancy/p/17725056.html