Python Map
Map會將一個函數對應到一個輸入清單的所有元素上。 Map的規格為:map(function_to_apply, list_of_inputs)
大多時候,我們需要將清單中的所有元素一個個傳遞給一個函數,並且收集輸出。例如:
items = [1, 2, 3, 4, 5] squared = [] for i in items: squared.append(i**2)
使用Map的話,可以讓我們以更簡單的方法解決這個問題。
items = [1, 2, 3, 4, 5] squared = list(map(lambda x: x**2, items))
大多時候,我們會使用python中的匿名函式lambda來配合map。不只對於一列表的輸入,同時我們也可以用於一列表的函數。
def multiply(x): return (x*x) def add(x): return (x+x) funcs = [multiply, add] for i in range(5): value = list(map(lambda x: x(i), funcs)) print(value)
以上程式輸出為:
# Output: # [0, 0] # [1, 2] # [4, 4] # [9, 6] # [16, 8]
感謝閱讀,希望能幫助大家,謝謝大家對本站的支持!
更多python 基礎教學之Map使用方法相關文章請關注PHP中文網!