I have different dictionaries that I want to regroup into a list of dictionaries, taking into account their different values:
Dictionaries :
[{'language': 'de', 'suggestion': 'fressen', 'comment': 'for animals'},
{'language': 'de', 'suggestion': 'essen', 'comment': ''},
{'language': 'fr', 'suggestion': 'manger', 'comment': ''},
{'language': 'fr', 'suggestion': 'bouffer', 'comment': 'slang'}]
List of dictionaries:
[{'language': 'de', 'suggestion': ['fressen', 'essen'], 'comment': ['for animals', '']}, \
{'language': 'fr', 'suggestion': ['manger', 'bouffer'], 'comment': ['', 'slang'}]
I am still a python beginner, and I don't know where to start, to group all the dictionaries with the same 'language': 'de' to the same dict.
ithsuggestion must be kept in sync with theithcomment. Have you considered a dict of dicts, with the language as the top-level key (de,fr, etc.), with the word itself as the second-level key (fressen, essen, etc.) and with the comment as the value? – FMc Jul 11 '11 at 12:30