python map() 的使用方法

Posted sea-stream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python map() 的使用方法相关的知识,希望对你有一定的参考价值。

 

>>>def square(x) :            # 计算平方数
...     return x ** 2
... 
>>> map(square, [1,2,3,4,5])   # 计算列表各个元素的平方
[1, 4, 9, 16, 25]
>>> map(lambda x: x ** 2, [1, 2, 3, 4, 5])  # 使用 lambda 匿名函数
[1, 4, 9, 16, 25]
 
# 提供了两个列表,对相同位置的列表数据进行相加
>>> map(lambda x, y: x + y, [1, 3, 5, 7, 9], [2, 4, 6, 8, 10])
[3, 7, 11, 15, 19]

 

以上是关于python map() 的使用方法的主要内容,如果未能解决你的问题,请参考以下文章

Python - 多进程map的使用方法

具有 2 个输入的 python 3 map/lambda 方法

js中map和python中的map

python multiprocessing pool.map() 等到方法完成

python map() 的使用方法

python3中内建函数map()与reduce()的使用方法