map map(function, list): 就是对list 中的每一个元素都调用function函数进行处理,返回一个map的对象 list一下就可以生成一个列表 或者for循环该对象就可以输出值 c=[2,3,4,5,6] bb=list(map(lambda x:x+1,a)) print(bb) [2, 3, 4, 5, 6] a=[1,2,3,4,5] c=[2,3,4,5,6] bb=list(map(lambda x,y:(x+1,y+1),a,c)) print(bb) 输出…