标签:class turn too partial UNC tools ret func fun
from functools import partial def add(a,b,c,d): return a+b+c+d add = partial(add,1,2) print(add(3,4) 结果为10
偏函数相当于给函数提前传了值1和2
然后函数执行的时候只用在写两个函数即可
相当于提前给函数传值,以后就可以少传值
标签:class turn too partial UNC tools ret func fun
原文地址:https://www.cnblogs.com/tangda/p/11209960.html