Skip to content
Advertisement

Remove string after a predefined string from a nested list of dictionaries with pandas

I have a dataframe with the following structure:

JavaScript

How can i Remove string from predefined string with pandas without changing the structure.

the predefined string = “from work_text_reviews_count of”

the text that i want to remove “from work_text_reviews_count of 450”

The expected output:

JavaScript

Advertisement

Answer

You don’t have much choice here but to loop.

updated question:
JavaScript

output:

JavaScript
older example

To update the data in place:

JavaScript

output:

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