Python之map用法
Python的
map()
函数是一个非常有用的工具,可以用来对可迭代对象(如列表、元组等)中的每个元素应用一个指定的函数。以下是map()
函数的各种用法:
1. 基本用法
map(function, iterable)
会将 function
应用于 iterable
中的每一个元素,并返回一个迭代器。
def square(x):
return x ** 2
numbers = [1, 2, 3, 4, 5]
squared_numbers = map(square, numbers)
print(list(squared_numbers)) # Output: [1, 4, 9, 16, 25]
原创大约 2 分钟