以下是你所说的你想要的:
from collections import defaultdict
d1 = defaultdict(list, {'A': [4, 4, 4, 4], 'S': [1], 'C': [1, 2, 3, 4]})
print 'the d1 is ', d1
d2 = defaultdict(list, {'A': [4, 4, 4], 'B': [2], '[]': [4, 4], 'C': [1, 2, 3]})
print 'the d2 is ', d2
d3 = defaultdict(list, dict((key, set(value) if len(value) > 1 else value)
for key, value in d1.iteritems()))
d3.update((key, list(d3[key].union(set(value)) if key in d3 else value))
for key, value in d2.iteritems())
print
print 'the d3 is ', d3
输出:
the d1 is defaultdict(<type 'list'>, {'A': [4, 4, 4, 4], 'S': [1], 'C': [1, 2, 3, 4]})
the d2 is defaultdict(<type 'list'>, {'A': [4, 4, 4], 'C': [1, 2, 3], 'B': [2], '[]': [4, 4]})
the d3 is defaultdict(<type 'list'>, {'A': [4], 'S': [1], 'B': [2], 'C': [1, 2, 3, 4], '[]': [4, 4]})
请注意,我添加了一个'C'
以两者为键的列表,d1
并d2
显示您的问题中未提及的可能性会发生什么 - 所以我不知道这是否是您想要发生的事情。