Python 小札 函数式编程2018-04-03Wonder Zhou阅读(2167)评论(0)赞(2)1. 函数名其实就是指向函数的变量 例如: >>> abs = len >>> abs(-10) 报错!!! >>> abs([1,2,3]) 3 2. 高阶函数 高阶函数: 能接收函数...