作者vanilla1474 (wawa)
看板Python
標題[問題] 巢狀字典的問題
時間Sat Oct 1 02:18:07 2016
大家好,我是Python 超級新手,最近自學遇到dict問題,卡關好多天了,麻煩大家教教
我了。
A = { 'fruits': { 'apple': 10, 'bananas': 30, 'orange': 22 }, 'meat': { 'beef'
: 50, 'pork': 45, 'chicken':30 } }
當我輸入30時,如何得到對應的key: bananas & chicken 的答案?反過來,如果是知道A
pple 怎麼得到它的value呢?
我只會從最外面一層一層進去查
例:A['meat']['beef'] = 50
一直想不出可以用什麼方法找出內層字典的 key & value 啊......
感激不盡了!
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 123.193.170.223
※ 文章網址: https://webptt.com/m.aspx?n=bbs/Python/M.1475259490.A.F24.html
※ 編輯: vanilla1474 (123.193.170.223), 10/01/2016 02:18:52
※ 編輯: vanilla1474 (123.193.170.223), 10/01/2016 02:19:19
1F:推 Yshuan: 你畫成樹狀圖來看 試著對樹做traversal 10/01 03:28
2F:推 lc85301: I got an Apple... (誤 10/01 11:14
3F:推 IMPOSSIBLEr: you need to know the outer key in order to get 10/01 13:11
4F:→ IMPOSSIBLEr: the inner dict. And from your first case, you a 10/01 13:11
5F:→ IMPOSSIBLEr: re trying to get the keys from given value whic 10/01 13:11
6F:→ IMPOSSIBLEr: h is not what a dict can do. You need to write 10/01 13:11
7F:→ IMPOSSIBLEr: a class which extends dict and implement this s 10/01 13:11
8F:→ IMPOSSIBLEr: pecial method. 10/01 13:11
9F:推 s06yji3: 做另一個dict用價錢當key,value用list紀錄商品 10/01 19:46
10F:推 longlongint: 改用sql吧 10/04 12:12
11F:推 BigBank: 可用for xx in dict.items() 去找 xx[0]是keys xx[1]是值 10/06 03:11
12F:→ BigBank: 詳細做法可參考下篇 不過使用.items()是最簡單的方法了 10/06 03:11