比较2个列表以删除不需要的单词

时间:2015-10-14 15:45:08

标签: python list dictionary

我需要将一个字符串或列表与另一个不需要的单词列表进行比较,只留下关键词,例如:

>filter_words(['how', 'about', 'i', 'go', 'through', 'that', 'little', 'passage', 'to', 'the', 'south'], skip_words)
>> Expected outcome ['go', 'passage', 'south']

这需要与 skip_words 进行比较,即:

>skip_words = ['a', 'about', 'all', 'an', 'another', 'any', 'around', 'at',
              'bad', 'beautiful', 'been', 'better', 'big', 'can', 'every', 'for',
              'from', 'good', 'have', 'her', 'here', 'hers', 'his', 'how',
              'i', 'if', 'in', 'into', 'is', 'it', 'its', 'large', 'later',
              'like', 'little', 'main', 'me', 'mine', 'more', 'my', 'now',
              'of', 'off', 'oh', 'on', 'please', 'small', 'some', 'soon',
              'that', 'the', 'then', 'this', 'those', 'through', 'till', 'to',
              'towards', 'until', 'us', 'want', 'we', 'what', 'when', 'why',
              'wish', 'with', 'would']

此示例使用单词列表而不是基本字符串,因此这更多是初步功能而不是最终结果,但我还没有找到解决方案。

1 个答案:

答案 0 :(得分:0)

你应该阅读python文档以获得列表理解,这段代码应该有所帮助:

newlist = []

for i in filter_words:
    if i not in skip_words:
        newlist.append(i)