码迷,mamicode.com
首页 > 编程语言 > 详细

Python -- lambda, map, filter

时间:2015-10-21 22:34:50      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

 

 


 

lambda

f = lambda x : x * 2

f(5)

 

 


map

 

list(map(lambda x:x[0].upper()+x[1:].lower(), [sQd, ‘ZORO‘]))

#传入列表,首字母变大写,其余变小写

 

 


filter

list(filter(lambda n: n%2 == 1, [1,2,3,4,5]))

#保留奇数,舍弃偶数
list(filter(lambda s: s and s.strip(), [S, ‘‘, None, b]))

#删除一个列表中的空元素

 


 

Python -- lambda, map, filter

标签:

原文地址:http://www.cnblogs.com/roronoa-sqd/p/4899175.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!