码迷,mamicode.com
首页 > 编程语言 > 详细

python partial偏函数

时间:2020-03-20 17:00:33      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:color   func   ret   cto   res   函数   art   tools   pre   

python partial偏函数

from functools import partial

def func(a,b,c,d):
    return a + b + c + d

tes = partial(func,1)
print(tes)
res = tes(2,3,4)
print(res)

 

python partial偏函数

标签:color   func   ret   cto   res   函数   art   tools   pre   

原文地址:https://www.cnblogs.com/baohanblog/p/12532638.html

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