Python-测验| Python词典测验 |问题 12
问题 12:求以下程序的输出:
dictionary1 = {'Google' : 1,
'Facebook' : 2,
'Microsoft' : 3
}
dictionary2 = {'GFG' : 1,
'Microsoft' : 2,
'Youtube' : 3
}
dictionary1.update(dictionary2);
for key, values in dictionary1.items():
print(key, values , end=" ")
(A)谷歌 1 Facebook 2 微软 2 GFG 1 Youtube 3
(B)运行时错误
(C)编译错误
(D)这些都不是答案:(一)
说明: dictionary1.update(dictionary2) 用于用dictionary2 的条目更新dictionary1 的条目。如果两个字典中有相同的键,则使用第二个字典中的值。
这个问题的测验