Python-测验| Python词典测验 |问题 14
问题 14:求以下程序的输出:
temp = dict()
temp['key1'] = {'key1' : 44, 'key2' : 566}
temp['key2'] = [1, 2, 3, 4]
for (key, values) in temp.items():
print(values, end = "")
(一)编译错误
(B) {'key1': 44, 'key2': 566}[1, 2, 3, 4]
(C)运行时错误
(D)以上都不是答案:(乙)
说明:字典可以保存任何值,例如整数、字符串、列表,甚至是另一个保存键值对的字典。
这个问题的测验