python-day18--匿名函數

1、lambda表達式python

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

2.參數能夠有多個,用逗號隔開函數

3.返回值和正常的函數同樣能夠是任意的數據類型spa

4.練習:3d

請把下面的函數轉換成匿名函數
def  add(x,y)
        return x+y
add()

結果:
sum1=lambda x,y:x+y
print(sum1(5,8))
View Code
1 dic = {'k1':50,'k2':80,'k3':90}
2 # func= lambda k:dic[k]
3 # print(max(dic,key=func))
4 print(max(dic,key = lambda k:dic[k]))#上面兩句就至關於下面一句
View Code
map方法
l=[1,2,3,4]
# def func(x):
#     return x*x
# print(list(map(func,l)))

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

map方法的應用
View Code
 l=[15,24,31,14]
 # def func(x):
 #         return x>20
 # print(list(filter(func,l)))
 
 print(list(filter(lambda x:x>20,l)))
filter
# 方法一
t1=(('a'),('b'))
t2=(('c'),('d'))
# print(list(zip(t1,t2)))
print(list(map(lambda t:{t[0],t[1]},zip(t1,t2))))

# 方法二
print(list([{i,j} for i,j in zip(t1,t2)]))

#方法三
func = lambda t1,t2:[{i,j} for i,j in zip(t1,t2)]
ret = func(t1,t2)
print(ret)

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

2、列表推導式code

1 6.30之內全部被3整除的數
2 print(list([i for i in range(30) if i%3==0]))

3、字典推導式blog

1、1 mcase = {'a': 10, 'b': 34}
   2 res1 = {i:mcase[i] for i in mcase}
   3 res={mcase[i]:i for i in mcase }
   4 print(res1)
   5 print(res)
2、1 mcase = {'a':10,'b':34,'A':7}
2 res = {i.lower():mcase.get(i.lower(),0)+mcase.get(i.upper(),0) for i in mcase}
3 print(res)

4、集合推導式ip

1 l=[5,-5,1,2,5]
2 print({i**2 for i in l})
相關文章
相關標籤/搜索