我有一个字符串列表,我想删除其中包含列表 excludeList 中的字符串的字符串。过滤器需要一个函数和一个列表,我如何“函数化” excluded not in
?excludeList 看起来像:["A2123", "B323", "C22"]
kolaDataList 看起来像:["Very long string somethingsomething B323", "Lorem ipsum"]
结果应该是[Lorem ipsum]
for excluded in excludeList:
kolaDataList = filter((excluded not in), kolaDataList)
我想这可以在haskell中工作,但我该如何在python中做到这一点?