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
时间: 2024-10-24 13:29:08