1. 程式人生 > >python--- map函式和lambda函式

python--- map函式和lambda函式

1...lambda 函式相當於一個匿名函式,顧名思義就是不用取名字的函式,相當於現實中的匿名信。

舉例:

lambda x,y: x+y

m = lambda x,y,z: (x-y)*z
print (m(3,1,2))

 執行結果:4

2...map函式 

map()是 Python 內建的高階函式,它接收一個函式 f 和一個 list,並通過把函式 f 依次作用在 list 的每個元素上,得到一個新的 list 並返回。
def f(x):
    return x+x
print((map(f, [1, 2, 3, 4, 5, 6, 7, 8, 9])))
print(list(map(f, [1, 2, 3, 4, 5, 6, 7, 8, 9])))

 

3...map函式和lambda函式聯合使用

x,y = map(lambda x:int(x),input("enter x and y (split by space )").split(" "))
print(x+y)

 執行結果: