參數:map(func,var) 注:var爲可迭代的對象,例如列表,元組等python
做用:對取可迭代對象中的每個元素對函數進行映射,獲得一個map對象(python3.x)python3.x
常見用法:函數
list1 = [1,2,3,4,5] def add(args): return args+100 list2 = list(map(add,list1)) print(list2)#[101, 102, 103, 104, 105] def f(x): return x*x print(set(map(f, (1, 2, 3, 4, 5, 9,3)))) #{1, 4, 9, 16, 81, 25}