我遇到了一个逻辑问题。
我有一个声明如下的字符串:
fruits = "banana grapes apple"
vegetables = "potatoes cucumber carrot"
现在有一些文本句子,我必须搜索文本格式前面的单词<vegetables> <fruits>
I ate carrot grapes ice cream for dessert.
答:吃了
Dad and mom brought banana cucumber and milk.
答案:带来
我在想的是拆分句子并将其放入一个数组中,然后查找序列,我能够打破句子但匹配序列是一个问题。
wd = sentence.split(' ')
for x in wd.strip().split():
# now i will have to look for the sequence
现在,我将不得不寻找文本格式前面的文本