list_x = [1,2,3,4,5] r=map(lambda x:x*x,list_x) print(list(r))
list_x = [1,2,3,4,5] list_y = [1,2,3,4,5] r=map(lambda x,y:x*x+y,list_x,list_y) print(list(r))
结果 个数 取决于 较小的 list个数
list_x = [1,2,3,4,5] r=map(lambda x:x*x,list_x) print(list(r))
list_x = [1,2,3,4,5] list_y = [1,2,3,4,5] r=map(lambda x,y:x*x+y,list_x,list_y) print(list(r))
结果 个数 取决于 较小的 list个数
上一篇:python reduce()
下一篇:python 闭包
python查询汉字函数
python的map()函数
map是python内置函数,会根据提供的函数对指定的序列做映射。map()函数的格式是:
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M