鱼C论坛's Archiver
论坛
›
新手乐园
› 写个高阶函数的复习,python3
gzj137070928
发表于 2020-9-15 17:24:18
写个高阶函数的复习,python3
高阶函数
def add(a, b, f):
return f(a)+f(b)
res = add(3, -6, abs)
print(res)
页:
[1]
查看完整版本:
写个高阶函数的复习,python3