map函數在Python中的應用 函數介紹: map() 會根據提供的函數對指定序列做映射。 map(function, iterable, ...) 第一個參數function 以參數序列中的每一個元素調用 function 函數,返回包含每次 function 函數返回值的新列表(python2.x返回列表,Python 3.x