-2
使用這個下面的例子:理解的Python的列表和字典使用的例子
對於世界上的每個人,我想創建自己的名單,我可以遍歷..
persons = []
attributes = {}
for human in world:
attributes['name'] = human['name']
attributes['eye_color'] = human['eyes']
persons.append(attributes)
現在,當我嘗試在我自己的列表中打印出每個名稱:
for item in persons:
print item['name']
他們都一樣,爲什麼?
我明白了,謝謝。 dict.copy()也非常有用,感謝鏈接。 – Prometheus 2015-02-08 13:20:32