函数也可以作为参数形式放入
正常参数形式:
def add(x,y):
return x+y
这里的x,y是一个参数,而函数也可以像这样子被放入。并且函数可以自己确定相加形式。
代码:
def test_func(compute): result = compute(1, 2) print(result) def compute(x, y): return x + y test_func(compute)
结果:
这里的compute相当于自己定义对两数“1” “2” 的操作,可以相加,相减,相乘,这就相当于一个算法设计。
例如:
def test_func(compute): result = compute(1, 2) print(result) def compute(x, y): return x * y test_func(compute)
结果:
def test_func(compute): result = compute(1, 2) print(result) def compute(x, y): return x - y test_func(compute)
结果: