标签:print a+b add 编程 return 高阶函数 绝对值 函数的参数 取绝对值
#高阶函数:把一个函数当另一个函数的参数
#函数式编程无副作用:传参固定,结果就是固定的
#python主要是面向对象
def add1(a,b):
return a+b
def add(a,b,f):
return f(a) + f(b)
res = add(3,-6,abs) #abs 函数是取绝对值
print(res)
eval()#可以吧字符串转化为字典
标签:print a+b add 编程 return 高阶函数 绝对值 函数的参数 取绝对值
原文地址:https://www.cnblogs.com/wzsx/p/9077212.html