Skip to content
Advertisement

convert a list of pairs with a fixed suffix to a dictionary

I have a big list like the below one:

JavaScript

and I want to make a dictionary of it like this:

JavaScript

This means there are two types of elements: regular simple ones and the other ones with a fixed suffix that I want as keys or values.

Advertisement

Answer

You can just “ignore” the suffix elements and add them manually as values to the original items.

From Python 3.9, you can use the removesuffix string method:

JavaScript

For other versions, you can filter the list:

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