标签:order cells syntax word 一个 res pad nbsp ble
变量可以指向函数,函数的参数能接收变量,那么一个函数就可以接收另一个函数作为参数,这种函数就称之为高阶函数。
1
2
3
4
5
6
|
def add(x,y,f): return f(x) + f(y) res = add( 3 , - 6 , abs ) print (res) |
1 def add(a,b): 2 print(a+b) 3 4 def func(x,y,f): 5 return f(x,y) 6 7 func(2,9,add)
标签:order cells syntax word 一个 res pad nbsp ble
原文地址:http://www.cnblogs.com/zoe233/p/7068954.html