gpt4 book ai didi

python,清理列表

转载 作者:行者123 更新时间:2023-11-28 22:04:49 25 4
gpt4 key购买 nike

尝试清理 python 列表时,我能够删除完全匹配的字符串。如何删除部分匹配项?

exclude = ['\n','Hits','Sites','blah','blah2','partial string','maybe here']
newlist = []
for item in array:
if item not in exclude:
newlist.append(item)

这里的问题是“项目不在排除范围内”......它进行精确匹配。

我应该使用以下方法吗:

s = "This be a string"
if s.find("is") == -1:
print "No 'is' here!"
else:
print "Found 'is' in the string."

在某种程度上,我回答了我自己的问题 :) 我想是否有替代“in”的操作数?

谢谢

最佳答案

请尝试使用以下生成器:

def remove_similar(array, exclude):
for item in array:
for fault in exclude:
if fault in item:
break
else:
yield item

关于python,清理列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6458006/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com