1.map()函数作用
map函数是根据提供的函数对指定序列做映射
2.示例
def square(x):
return x*x
# 传递元组
print(list(map(square,(3,4,5))))
# 传递列表
print(list(map(square,[3,4,5])))
# 传递集合
print(list(map(square,{3,4,5})))
# 用元组接收
print(tuple(map(square,(3,4,5))))
# 用集合接收
print(set(map(square,(3,4,5))))
运行结果:
[9, 16, 25]
[9, 16, 25]
[9, 16, 25]
(9, 16, 25)
{16, 9, 25}