我有两个字典,我想自然地将它们的内容添加到第三个字典而不会在它们之间混合。
a = {'life':'1','arts':'2'}
b = {'technology':'3', 'culture':'4'}
c = {} # here must be keys and values of the `a` and `b` dicts
答案 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])