标签:
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‘]))
#删除一个列表中的空元素
标签:
原文地址:http://www.cnblogs.com/roronoa-sqd/p/4899175.html