您好,登錄后才能下訂單哦!
小編給大家分享一下python如何訪問Dict字典,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
訪問Dict字典
你也會經常給 dicts 中寫入 key,value (鍵,值)。
如果你試圖訪問一個不存在的于 dict 的 key ,可能會為了避免 KeyError 錯誤,你會傾向于這樣做:
countr = {} bag = [2, 3, 1, 2, 5, 6, 7, 9, 2, 7] for i in bag: if i in countr: countr[i] += 1 else: countr[i] = 1 for i in range(10): if i in countr: print("Count of {}: {}".format(i, countr[i])) else: print("Count of {}: {}".format(i, 0))
但是,用 get() 是個更好的辦法。
countr = {} bag = [2, 3, 1, 2, 5, 6, 7, 9, 2, 7] for i in bag: countr[i] = countr.get(i, 0) + 1 for i in range(10): print("Count of {}: {}".format(i, countr.get(i, 0)))
當然你也可以用 setdefault 來代替。
這還用一個更簡單卻多費點開銷的辦法:
bag = [2, 3, 1, 2, 5, 6, 7, 9, 2, 7] # {2: 3, 3: 1, 1: 1, 5: 1, 6: 1, 7: 2, 9: 1} countr = dict([(num, bag.count(num)) for num in bag]) for i in range(10): print("Count of {}: {}".format(i, countr.get(i, 0)))
你也可以用 dict 推導式。
countr = {num: bag.count(num) for num in bag}
這兩種方法開銷大是因為它們在每次 count 被調用時都會對列表遍歷。
以上是“python如何訪問Dict字典”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。