這篇文章主要介紹Python原生字典的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡(jiǎn)單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長期合作伙伴,公司提供的服務(wù)項(xiàng)目有:空間域名、網(wǎng)站空間、營銷軟件、網(wǎng)站建設(shè)、貢覺網(wǎng)站維護(hù)、網(wǎng)站推廣。
字典是 Python 中基礎(chǔ)的數(shù)據(jù)結(jié)構(gòu)之一,字典的使用,可以說是非常的簡(jiǎn)單粗暴,但即便是這樣一個(gè)與世無爭(zhēng)的數(shù)據(jù)結(jié)構(gòu),仍然有很多人 "看不慣它" 。
也許你并不覺得,但我相信,你看了這篇文章后,一定會(huì)和我一樣,對(duì)原生字典開始有了偏見。我舉個(gè)簡(jiǎn)單的例子吧當(dāng)你想訪問字典中的某個(gè) key 時(shí),你需要使用字典特定的訪問方式,而這種方式需要你鍵入 一對(duì)中括號(hào) 還有 一對(duì)引號(hào)
>>> profile = dict(name="iswbm") >>> profile {'name': 'iswbm'} >>> profile["name"] 'iswbm'
是不是開始覺得忍無可忍了?如果可以像調(diào)用對(duì)象屬性一樣使用 . 去訪問 key 就好了,可以省去很多多余的鍵盤擊入,就像這樣子
>>> profile.name 'iswbm'
是的,今天這篇文章就是跟大家分享一種可以直接使用 . 訪問和操作字典的一個(gè)黑魔法庫 -- munch。
使用如下命令進(jìn)行安裝
$ python -m pip install munch
munch 有一個(gè) Munch 類,它繼承自原生字典,使用 isinstance 可以驗(yàn)證
>>> from munch import Munch >>> profile = Munch() >>> isinstance(profile, dict) True >>>
并實(shí)現(xiàn)了點(diǎn)式賦值與訪問,profile.name 與 profile['name'] 是等價(jià)的
>>> profile.name = "iswbm" >>> profile.age = 18 >>> profile Munch({'name': 'iswbm', 'age': 18}) >>> >>> profile.name 'iswbm' >>> profile["name"] 'iswbm'
本身 Munch 繼承自 dict,dict 的操作也同樣適用于 Munch 對(duì)象,不妨再來驗(yàn)證下首先是:增刪改查
# 新增元素 >>> profile["gender"] = "male" >>> profile Munch({'name': 'iswbm', 'age': 18, 'gender': 'male'}) # 修改元素 >>> profile["gender"] = "female" >>> profile Munch({'name': 'iswbm', 'age': 18, 'gender': 'female'}) # 刪除元素 >>> profile.pop("gender") 'female' >>> profile Munch({'name': 'iswbm', 'age': 18}) >>> >>> del profile["age"] >>> profile Munch({'name': 'iswbm'})
再者是:一些常用方法
>>> profile.keys() dict_keys(['name']) >>> >>> profile.values() dict_values(['iswbm']) >>> >>> profile.get('name') 'iswbm' >>> profile.setdefault('gender', 'male') 'male' >>> profile Munch({'name': 'iswbm', 'gender': 'male'})
當(dāng)訪問一個(gè)字典中不存在的 key 時(shí),會(huì)報(bào) KeyError 的錯(cuò)誤
>>> profile = {} >>> profile["name"] Traceback (most recent call last): File "", line 1, in KeyError: 'name'
對(duì)于這種情況,通常我們會(huì)使用 get 來規(guī)避
>>> profile = {} >>> profile.get("name", "undefined") 'undefined'
當(dāng)然你在 munch 中仍然可以這么用,不過還有一種更好的方法:使用 DefaultMunch,它會(huì)在你訪問不存在的 key 時(shí),給你返回一個(gè)設(shè)定好的默認(rèn)值
>>> from munch import DefaultMunch >>> profile = DefaultMunch("undefined", {"name": "iswbm"}) >>> profile DefaultMunch('undefined', {'name': 'iswbm'}) >>> profile.age 'undefined' >>> profile DefaultMunch('undefined', {'name': 'iswbm'})
上面使用 DefaultMunch 僅當(dāng)你訪問不存在的 key 是返回一個(gè)默認(rèn)值,但這個(gè)行為并不會(huì)修改原 munch 對(duì)象的任何內(nèi)容。若你想訪問不存在的 key 時(shí),自動(dòng)觸發(fā)給原 munch 中新增你想要訪問的 key ,并為其設(shè)置一個(gè)默認(rèn)值,可以試一下 DefaultFactoryMunch 傳入一個(gè)工廠函數(shù)。
>>> from munch import DefaultFactoryMunch >>> profile = DefaultFactoryMunch(list, name='iswbm') >>> profile DefaultFactoryMunch(list, {'name': 'iswbm'}) >>> >>> profile.brothers [] >>> profile DefaultFactoryMunch(list, {'name': 'iswbm', 'brothers': []})
Munch 支持序列化為 JSON 或者 YAML 格式的字符串對(duì)象
轉(zhuǎn)換成 JSON:
>>> from munch import Munch >>> munch_obj = Munch(foo=Munch(lol=True), bar=100, msg='hello') >>> >>> import json >>> json.dumps(munch_obj) '{"foo": {"lol": true}, "bar": 100, "msg": "hello"}'
轉(zhuǎn)換成 YAML:
>>> from munch import Munch >>> munch_obj = Munch(foo=Munch(lol=True), bar=100, msg='hello') >>> import yaml >>> yaml.dump(munch_obj) '!munch.Munch\nbar: 100\nfoo: !munch.Munch\n lol: true\nmsg: hello\n' >>> >>> print(yaml.dump(munch_obj)) !munch.Munch bar: 100 foo: !munch.Munch lol: true msg: hello >>>
建議使用 safe_dump 去掉 !munch.Munch:
>>> print(yaml.safe_dump(munch_obj)) bar: 100 foo: lol: true msg: hello
以上是“Python原生字典的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!