2
I’m at Jupyter Notebook working with Python.
Has a dataframe with the name and text fields, in the text, which is a txt loaded, I want to search if there is the string that is exactly the value in the name field.
Dataframe:
Wish to result in all rows of the dataframe resulting in whether the name field value was found in the text or not.
Thanks Ruan, that’s right you understood, only that I did not get results with these codes, I got a result with the code below:

data[['nome' in x for x in data['texto']]]

Your second code came all fake, I think you should be comparing contents of fields, but the name field is always very dry, the text is text pages and I have to find in this exactly the contents of the name field. But I’m still analyzing and seeing if I can do better. Gratefully– Perciliano