如果在Python中找到,则从列表中删除项目

时间:2016-05-23 20:29:44

标签: python list remove-if

如果发现某个项目与其他列表中的其他项目匹配,我如何从列表中删除该项目?

for item in bigIpList:
    for item2 in smallIpList:
        if item==item2:
            #remove item from bigIpList

1 个答案:

答案 0 :(得分:0)

使用过滤器:

bigIpList = filter(lambda e: e not in smallIpList, bigIpList)