标签:color func ret cto res 函数 art tools pre
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)
标签:color func ret cto res 函数 art tools pre
原文地址:https://www.cnblogs.com/baohanblog/p/12532638.html