快速的問題在這裏。我有這樣的字典(有更多的條目):Python - 在字典裏面讀字典的值
champlist = {
"Aatrox": {
"id": 266,
"title": "the Darkin Blade",
"name": "Aatrox",
"key": "Aatrox"
},
"Thresh": {
"id": 412,
"title": "the Chain Warden",
"name": "Thresh",
"key": "Thresh"
}
}
而且我喜歡讀所有的id。我想這樣的
for champ in champlist:
print(champ['id'])
但它說:
print(champ['id']) TypeError: string indices must be integers
它不選擇每一個「冠軍」是一本字典,但作爲一個字符串,任何與此幫助?謝謝!
我不能給予好評你,但這個工作!謝謝! – Nonitus
沒有概率,很確定這已經觸及每個新的Python開發者在某個點或另一個點 –