匿名函数
f = lambda x: x * x
f(2) # x =2
#4
- 传入列表
f = lambda x: x[2]
print(f([1, 2, 3])) # x = [1,2,3]
map使用
传入函数体
def f(x):
return x*x
r = map(f, [1, 2, 3, 4]) #函数作用在可迭代对象的每一项
#[1, 4, 9, 16]
- 另一个例子
list(map([1, 2, 3, 4, 5, 6, 7, 8, 9], lambda x: x * x))
reduce用法
from functools import reduce
def add(x, y):
return x*10 + y
print(reduce(add, [1, 2, 3, 4])) #函数作用在可迭代对象的每一项聚合
# 1234
sorted探究
参考:
高阶函数map/reduce
sorted(iterable, key=None, rev
原文地址:https://www.cnblogs.com/iiiiiher/p/8430914.html
时间: 2024-10-11 04:55:36