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

偏函数

时间:2019-01-28 20:18:57      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:art   import   fun   imp   UNC   tool   传递参数   方式   自动   

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)

 

偏函数

标签:art   import   fun   imp   UNC   tool   传递参数   方式   自动   

原文地址:https://www.cnblogs.com/believepd/p/10331494.html

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