Finding the List of words in List of Sentences and return the matching sentences(在句子列表中查找单词列表,并返回匹配的句子)
本文介绍了在句子列表中查找单词列表,并返回匹配的句子的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何从句子列表和单词列表返回句子列表,前提是单词列表(三元语法)中的所有三个单词都匹配。
请提出建议。下面是示例列表。
listwords = [['people','suffering','acute'], ['Covid-19','Corona','like'], ['people','must','collectively']]
listsent = ['The number of people suffering acute hunger could almost double.',
'Lockdowns and global economic recession have',
'one more shock – like Covid-19 – to push them over the edge',
'people must collectively act now to mitigate the impact']
输出列表应该是第一句和最后一句,因为它们在列表单词中有三个匹配词。
预期输出为:
['The number of people suffering acute hunger could almost double.',
'people must collectively act now to mitigate the impact']
推荐答案
欢迎使用堆栈溢出
试用此解决方案:
listwords = [['people','suffering','acute'], ['Covid-19','Corona','like'], ['people','must','collectively']]
listsent = ['The number of people suffering acute hunger could almost double.',
'Lockdowns and global economic recession have',
'one more shock – like Covid-19 – to push them over the edge',
'people must collectively act now to mitigate the impact']
# interate through each sentence
for sentence in listsent:
# iterate through each group of words
for words in listwords:
# check to see if each word group is in the current sentence
if all(word in sentence for word in words):
print(sentence)
我注释这些行是为了让您了解情况
代码的第一部分迭代列表中的每个句子
for sentence in listsent:
然后,我们需要迭代您的单词列表中的词组
for words in listwords
这是事情变得有趣的地方。由于您有嵌套列表,我们需要检查以确保在句子中找到所有这三个单词
if all(word in sentence for word in words):
最后,您可以打印出包含所有单词的每个句子
print(sentence)
您还可以将其放入函数中,并将找到的句子作为新列表返回
listwords = [['people','suffering','acute'], ['Covid-19','Corona','like'], ['people','must','collectively']]
listsent = ['The number of people suffering acute hunger could almost double.',
'Lockdowns and global economic recession have',
'one more shock – like Covid-19 – to push them over the edge',
'people must collectively act now to mitigate the impact']
def check_words(listwords, listsent):
listsent_new = []
# interate through each sentence
for sentence in listsent:
# iterate through each group of words
for words in listwords:
# check to see if each word group is in the current sentence
if all(word in sentence for word in words):
listsent_new.append(sentence)
return listsent_new
if __name__ == '__main__':
print(check_words(listwords, listsent))
这篇关于在句子列表中查找单词列表,并返回匹配的句子的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:在句子列表中查找单词列表,并返回匹配的句子


猜你喜欢
- 沿轴计算直方图 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- padding='same' 转换为 PyTorch padding=# 2022-01-01
- 如何将一个类的函数分成多个文件? 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01