Skip to content
Advertisement

Python replace comma separated words in list to dictionary value if existed in dictionary key

I would like to replace words to corresponding dictionary key:value if exist. For example, I have a comma separated list

JavaScript

and would like to change ‘Whale’ to ‘Big Whale’ and ‘Fish’ to ‘Jellyfish’ like this dictionary:

JavaScript

to make the result like this:

JavaScript

I could combine all the elements in ‘unfiltered’ list and filtered with dictionary value:

JavaScript

Result when filtering combined words:

JavaScript

However, I want to keep the list ‘unfiltered’ without combining its elements. Is there any way to filter the ‘unfiltered’ list to ‘word_to_change’ dictionary key:value? I would sincerely appreciate if you could give some advice.

Advertisement

Answer

You can us the following comprehension:

JavaScript

This makes use of the dict.get(key, default) method. You split the list elements, apply the conversion and join the tokens back together.

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