論理的な問題に遭遇しました。
次のように宣言された文字列があります。
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
ここで、テキスト形式の前にあるテキストを探す必要があります