Skip to content
Advertisement

Concatenate two columns excepting strings from a list_pandas

I concatenate two columns for the situation where strings from column ‘words’ are not present in the column ‘sentence’. My code is:

JavaScript

Additionally, I want to restrict the concatenation per row if, in column ‘words’ I have strings present in this list:

JavaScript

Here is an example of how the result should look like

JavaScript

Output given by the code above is:

JavaScript

Advertisement

Answer

Given:

JavaScript

Doing:

JavaScript

Output:

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