码迷,mamicode.com
首页 > 其他好文 > 详细

偏函数(partial)

时间:2019-07-18 21:12:56      阅读:135      评论:0      收藏:0      [点我收藏+]

标签: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

然后函数执行的时候只用在写两个函数即可

 

 

相当于提前给函数传值,以后就可以少传值

 

偏函数(partial)

标签:class   turn   too   partial   UNC   tools   ret   func   fun   

原文地址:https://www.cnblogs.com/tangda/p/11209960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!