1. 程式人生 > >python3 map函式

python3 map函式

map(function, iterable, ...)

iterable可以是一個或多個序列.
第一個引數 function 以引數序列中的每一個元素呼叫 function 函式,返回包含每次 function 函式返回值的新列表。
輸入:

def square(x) :            # 計算平方數
    return x ** 2
map(square, [1,2,3,4]) 

輸出:

[1, 4, 9, 16]