python map()函数

2022/2/28 20:21:28

本文主要是介绍python map()函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

map()函数根据提供的函数对指定序列做映射。

map()函数的语法

map(function, iterable,...)

参数说明

function --函数

iterable --一个或多个序列

>>> def square(x) :         # 计算平方数
...     return x ** 2
...
>>> map(square, [1,2,3,4,5])    # 计算列表各个元素的平方
<map object at 0x100d3d550>     # 返回迭代器
>>> list(map(square, [1,2,3,4,5]))   # 使用 list() 转换为列表
[1, 4, 9, 16, 25]
>>> list(map(lambda x: x ** 2, [1, 2, 3, 4, 5]))   # 使用 lambda 匿名函数
[1, 4, 9, 16, 25]
>>>

 



这篇关于python map()函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程