g = map(lambda x, y: x + y, [0, 2, 3, 4, 5, 6], [2, 5, 11, 13, 8, 10]) print(list(g))
map() 会根据提供的函数对指定序列做映射。
第一个参数 function 以参数序列中的每一个元素调用 function 函数,返回包含每次 function 函数返回值的新列表。
map() 函数语法:
map(function, iterable, ...)
原文:https://www.cnblogs.com/zsvsz/p/14088148.html