Python中的lambda的簡單介紹

在學習python的過程當中,lambda的語法常常出現,如今將它整理一下,以備往後查看。   python 一、lambda是什麼? 舉個例子以下:函數 1 func=lambda x:x+1 2 print(func(1)) 3 #2 4 print(func(2)) 5 #3 6 7 #以上lambda等同於如下函數 8 def func(x): 9 return(x+1)   能
相關文章
相關標籤/搜索