如何将两个字典中的键和值添加到第三个而不混合它们?

时间:2017-07-05 07:12:59

标签: python

我有两个字典,我想自然地将它们的内容添加到第三个字典而不会在它们之间混合。

a = {'life':'1','arts':'2'}
b = {'technology':'3', 'culture':'4'}
c = {} # here must be keys and values of the `a` and `b` dicts

1 个答案:

答案 0 :(得分:-2)

也许您可以尝试使用 zip 关键字

a = {'life':'1','arts':'2'}
b = {'technology':'3', 'culture':'4'}
for q, s in zip(a, b):
    print(q, a[q])
    print(s, b[s])