标签:开发者 new 帮助 cto turn art imp bsp col
示例
import functools def index(a1,a2): return a1 + a2 # 原来的调用方式 # ret = index(1,23) # print(ret) #24 # 偏函数,帮助开发者自动传递参数 new_func = functools.partial(index,666) ret = new_func(1) print(ret) #667
标签:开发者 new 帮助 cto turn art imp bsp col
原文地址:https://www.cnblogs.com/zh-xiaoyuan/p/13232926.html