以列表返回可遍历的(键,值) 元组字典。
dict.items()
def test(): arr={"a":"A","b":"B","c":"C"} # 遍历字典列表 for key,value in arr.items(): print(key) print(value)