如何按不同条件过滤列表?

时间:2019-03-08 11:42:23

标签: python python-3.x list if-statement logical-and

我编写了以下代码:

list_1 = [5, 18, 3]
list_2 = []
for element in list_1:
    if element < 0:
        list_2.append(element)
    elif element % 9 == 0:
        list_2.append(element)
    elif element % 2 != 0: 
        list_2.append(element)
    else:
        print('No number is valid')
print(list_2)

问题在于,这将返回至少满足3个条件之一的数字列表。

我想要的结果是满足所有三个条件的数字的列表。我该如何实现?

3 个答案:

答案 0 :(得分:3)

使用一个包含所有条件的if语句

if element<0 and element%9==0 and element%2!=0 :
    list2.append(element)

答案 1 :(得分:2)

尝试列表理解:

list_2 = [i for i in list_1 if i<0 and i%9==0 and i%2 !=0]

答案 2 :(得分:2)

您还可以使用函数filter()&代替AND({{1}代替|):

OR