我创建了一个字典列表,其中每个字典都有一个列表形式的值,如下所示:
dictlist=[{a:['e','f','g'],b:['h','i','k'],c:['u','v',w]},{a:['t','u']}]
上面的示例在列表中包含两个字典:
one is {a:['e','f','g'],b:['h','i','k'],c:['u','v',w]}
and another dictionary is {a:['t','u']}
我想要的只是组合这个列表的元素,以便在列表中生成一个具有相同键和值的完整字典,如下所示:
finaldictionary = {a:['e','f','g','t','u'],b:['h','i',k],c:['u','v','w']}