编程语言
首页 > 编程语言> > python | map

python | map

作者:互联网

python | map

介绍

map() 函数语法:
map(function, iterable, ...)

参数:
function – 函数
iterable – 一个或多个序列

实例

单个序列

def square(x) : 
	return x ** 2

map(square, [1,2,3,4,5])
<map object at 0x100d3d550>

在python2中输出返回一个列表,但是在python中返回的是一个迭代器。我们可以将其强制转换为列表:

list(map(square, [1,2,3,4,5]))
[1, 4, 9, 16, 25]

结合lambda,看起来更高级:

list(map(lambda x: x ** 2, [1, 2, 3, 4, 5]))
[1, 4, 9, 16, 25]

再来一个例子:

list(map(str,'python'))
['p', 'y', 't', 'h', 'o', 'n']

多个序列

store1 = [10.00, 11.00, 12.34, 2.34]
store2 = [9.00, 11.10, 12.34, 2.01]
cheapest = map(min, store1, store2)
cheapest
<map at 0x2177d83a1c0>

可以看到直接输出是map对象,因此为了查看里面的值,我们遍历下:

for item in cheapest:
    print(item)
9.0
11.0
12.34
2.01

参考文献

菜鸟教程

标签:map,square,cheapest,python,12.34,序列
来源: https://blog.csdn.net/weixin_43360896/article/details/114075032