map的用法 def fn(x): return x*2 L1 = [1,2,3,4,5,6] L2 = list(map(fn,L1)) L2 [2, 4, 6, 8, 10, 12] 通过上面的运行,可以知道map就是把一个数组内所有的元素都执行map加入的方法. 用法如下 map(方法,数组) reduce的用法 先看例子 from functools import reduce def add(x,y): return x + y L1 = [1,2,3,4,5,6] L2 = redu…