python 匿名函式

2021-10-25 08:41:55 字數 2314 閱讀 4469

一、匿名函式:也叫lambda表示式

1.匿名函式的核心:一些簡單的需要用函式去解決的問題,匿名函式的函式體只有一行

2.引數可以有多個,用逗號隔開

3.返回值和正常的函式一樣可以是任意的資料型別

二、匿名函式練習

1.請把下面的函式轉換成匿名函式

1 

2 def add(x,y)

3 return x+y

4 add()

5 6 結果:

7 sum1=lambda x,y:x+y

8 print(sum1(5,8))

請把下面的函式轉換成匿名函式 view code

2.比兩個數的大小

1 dic = 

2 # func= lambda k:dic[k]

3 # print(max(dic,key=func))

4 print(max(dic,key = lambda k:dic[k]))#上面兩句就相當於下面一句

view code

3. map方法的應用

1 l=[1,2,3,4]

2 # def func(x):

3 # return x*x

4 # print(list(map(func,l)))

5 6 print(list(map(lambda x:x*x,l)))

7

map方法 view code

4.filter函式的小應用

1 l=[15,24,31,14]

2 # def func(x):

3 # return x>20

4 # print(list(filter(func,l)))

5 6 print(list(filter(lambda x:x>20,l)))

view code

5.現有兩個元組(('a'),('b')),(('c'),('d')), 請使用python中匿名函式生成列表[,]

1 # 方法一

2 t1=(('a'),('b'))

3 t2=(('c'),('d'))

4 # print(list(zip(t1,t2)))

5 print(list(map(lambda t:,zip(t1,t2))))

6 7 # 方法二

8 print(list([ for i,j in zip(t1,t2)]))

9 10 #方法三

11 func = lambda t1,t2:[ for i,j in zip(t1,t2)]

12 ret = func(t1,t2)

13 print(ret)

14 15 5.現有兩個元組(('a'),('b')),(('c'),('d')), 請使用python中匿名函式生成列表[,]

view code

三、列表推導式

6. 30以內能被3整除的數

1 print(list([i for i in range(30) if i%3==0]))
view code

三、字典推倒式

例一:將乙個字典的key和value對調

1 mcase = 

2 res1 =

3 res=

4 print(res1)

5 print(res)

view code

例二:合併大小寫對應的value值,將k統一成小寫

1 mcase = 

2 res =

3 print(res

view code

四、集合推倒式

例:計算列表中每個值的平方,自帶去重功能

1 l=[5,-5,1,2,5]

2 print()

view code

歸類:

python相關

python匿名函式

例如 a 100 b a 這樣100只會有乙份,a和b只是指向了同乙個位置,改變a的值b也會跟著改變 當我們用id 變數 檢視兩變數的位址是相同的 可變型別 列表,字典 不可變型別 除了可變型別剩下的都是不可變型別 不可變型別舉例 a world 可以輸出a 0 整個字串也可以修改,但是要修改a 0...

python 匿名函式

在python中,對匿名函式提供了有限支援。還是以map 函式為例,計算f x x2時,除了定義乙個f x 的函式外,還可以直接傳入匿名函式 map lambda x x x,1,2,3,4,5,6,7,8,9 1,4,9,16,25,36,49,64,81 通過對比可以看出,匿名函式lambda ...

python 匿名函式

1.匿名函式定義規則 lambda 形參 返回值 def fun args,kwargs return args,kwargs print lambda args,kwargs args,kwargs def add x,y return x y from functools import redu...