添加不同词典的键值并将其存储为另一个词典

时间:2015-08-04 02:52:12

标签: python dictionary slice

我有类似的东西

stud_1 = {'stud_2' : 1, 'stud_3' : 3, 'stud_4' : 2,'stud_5' : 5,'stud_6' : 1,'stud_7' : 3,'stud_8' : 4,'stud_9' : 3}
stud_2 = {'stud_1' : 3, 'stud_3' : 2, 'stud_4' : 4,'stud_5' : 2,'stud_6' : 1,'stud_7' : 5,'stud_8' : 1,'stud_9' : 2}
stud_3 = {'stud_1' : 1, 'stud_2' : 5, 'stud_4' : 3,'stud_5' : 5,'stud_6' : 5,'stud_7' : 2,'stud_8' : 3,'stud_9' : 5}
stud_4 = {'stud_1' : 4, 'stud_2' : 3, 'stud_3' : 2,'stud_5' : 1,'stud_6' : 5,'stud_7' : 3,'stud_8' : 1,'stud_9' : 4}
.....
.....

依此类推stud_9。这些值是每个学生收到的五分中的标记

我想互相添加键值并将其存储为另一个词典。 就像在stud_1本身以外的词典中添加键stud_1的值一样,然后将其存储在一个键为stud_1的新词典中。

我该怎么做?

修改

如果我在这里只考虑这4个词典,那么最后的词典应该是

final_dict = {'stud_1' : 9 , 'stud_2' : 9 , 'stud_3' : 7, 'stud_4' : 9 ....}  ## and so on according to the key value

2 个答案:

答案 0 :(得分:5)

您可以使用collections.Counter,然后将每个字典更新到该计数器。示例 -

from collections import Counter
s1c = Counter(stud_1)
s1c.update(stud_2)
s1c.update(stud_3)
.
.
.

Counter是dict的子类,因此您可以稍后将s1c用作简单字典。

更新计数器时,将从传入的字典/计数器添加值,而不是覆盖。

答案 1 :(得分:0)

使用dictionary.iteritems()迭代每个字典并将它们附加到第一个字典。

for k,v in dict.iteritems():
    dict2[k] = v

或者您可以使用dictionary.update()

dict1.update(dict2)