reduce
map函数和reduce函数?

map(lambdax:x*x,[1,2,3,4])使用lambda[1,4,9,16]reduce(lambdax,y:x*y,[1,2,3,4])相当于((1*2...