python笔记——filter/lambda/all
all函数
all()函数用于判断给定的可迭代参数 iterable 中的所有元素是否都为 TRUE,如果是返回 True,否则返回 False。
语法:all(iterable)
list1 = [1, 2, 3, 4, ' ']
list2 = [1, 2, 3, 4, '']
list3 = [3, 4, 5, 6]
list4 = [1, 2, 3, 4, 5, 6]
x = all(list1)
y = all(list2)
z = all(list3)
rs = all([i in list2 for i in list1])
rs2 = all([i in list4 for i in list3])
print(x)
print(y)
print(z)
print(rs)
print(rs2)
运行结果:
True
False
True
False
True
lambda函数
匿名函数,通俗地说就是没有名字的函数,lambda函数没有名字,是一种简单的、在同一行中定义函数的方法。
语法:lambda arguments : expression
list3 = [3, 4, 5, 6]
list4 = [1, 2, 3, 4, 5, 6]
x = lambda j: all([i in j for i in list3])
print(x(list4))
运行结果:
True
filter函数
python里的过滤器,filter()函数用于过滤可迭代对象中不符合条件的元素
标签:函数,python,list3,filter,print,True,lambda From: https://www.cnblogs.com/likaifei/p/16711669.html语法:filter(function,iterable)