标签:迭代 data- 多个参数 lis div 用途 要求 das new
1 #传入一个列表 2 #先写一个函数,作用是把参数*2 3 func = lambda x:x*2 4 oldlist = [0,1,2,3,4] #待处理的列表数据 5 newlist = list(map(func,oldlist)) #通过map函数,批处理后的数据 6 print(newlist) 7 8 #传入多个列表 9 #先写一个函数,作用是把参数x和y相乘 10 func2 = lambda x,y:x*y 11 oldlist1 = [0,1,2,3,4] #待处理的列表数据 12 oldlist2 = [2,5,7,9] #待处理的列表数据 13 newlist1 = list(map(func2,oldlist1,oldlist2)) #通过map函数,批处理后的数据 14 print(newlist1)
标签:迭代 data- 多个参数 lis div 用途 要求 das new
原文地址:https://www.cnblogs.com/vigogogogo/p/12923133.html