Skip to content
Advertisement

Searching over a list of individual sentences by a specific term in Python

I have a list of terms in Python that look like this.

JavaScript

As well as a list of individual sentences that may contain the name of that fruit in a data frame. Something similar to this:

JavaScript

And I want to take the sentences in the review column, match them with the fruit mentioned in the text and print out a data frame of that as a final result. So, something like this:

JavaScript

Hoe could I go about doing this?

Advertisement

Answer

While the exact answer depends on how you’re storing the data, I think the methodology is the same:

  1. Create and store an empty list for every fruit name to store its reviews
  2. For each review, check each of the fruits to see if they appear. If a fruit appears in the comment at all, add the review to that fruit’s list

Here’s an example of what that would look like:

JavaScript

This differs from previous answers in that sentences like “I enjoyed this grape. I thought the grape was very juicy” are only added to the grape section once.

If your data is stored as a list of lists, the process is very similar:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement