您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“Python黑魔法庫(kù)安裝及操作字典的方法教程”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“Python黑魔法庫(kù)安裝及操作字典的方法教程”吧!
當(dāng)你想訪(fǎng)問(wèn)字典中的某個(gè) key 時(shí),你需要使用字典特定的訪(fǎng)問(wèn)方式,而這種方式需要你鍵入 一對(duì)中括號(hào) 還有 一對(duì)引號(hào)
>>> profile = dict(name="iswbm") >>> profile {'name': 'iswbm'} >>> profile["name"] 'iswbm'
是不是開(kāi)始覺(jué)得忍無(wú)可忍了?
如果可以像調(diào)用對(duì)象屬性一樣使用 .
去訪(fǎng)問(wèn) key 就好了,可以省去很多多余的鍵盤(pán)擊入,就像這樣子
>>> profile.name 'iswbm'
是的,今天這篇文章就是跟大家分享一種可以直接使用 .
訪(fǎng)問(wèn)和操作字典的一個(gè)黑魔法庫(kù) – munch
。
使用如下命令進(jìn)行安裝
$ python -m pip install munch
munch 有一個(gè) Munch 類(lèi),它繼承自原生字典,使用 isinstance 可以驗(yàn)證
>>> from munch import Munch >>> profile = Munch() >>> isinstance(profile, dict) True >>>
并實(shí)現(xiàn)了點(diǎn)式賦值與訪(fǎng)問(wè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ì)象,不妨再來(lái)驗(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)訪(fǎng)問(wèn)一個(gè)字典中不存在的 key 時(shí),會(huì)報(bào) KeyError 的錯(cuò)誤
>>> profile = {} >>> profile["name"] Traceback (most recent call last): File "<stdin>", line 1, in <module> KeyError: 'name'
對(duì)于這種情況,通常我們會(huì)使用 get 來(lái)規(guī)避
>>> profile = {} >>> profile.get("name", "undefined") 'undefined'
當(dāng)然你在 munch 中仍然可以這么用,不過(guò)還有一種更好的方法:使用 DefaultMunch,它會(huì)在你訪(fǎng)問(wèn)不存在的 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)你訪(fǎng)問(wèn)不存在的 key 是返回一個(gè)默認(rèn)值,但這個(gè)行為并不會(huì)修改原 munch 對(duì)象的任何內(nèi)容。
若你想訪(fǎng)問(wèn)不存在的 key 時(shí),自動(dòng)觸發(fā)給原 munch 中新增你想要訪(fǎng)問(wèn)的 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
>>> dict_obj = {"1.2": "hello"} >>> dict_obj["1.2"] 'hello'
以上就是關(guān)于 munch 的使用全解,munch 的進(jìn)一步封裝使得數(shù)據(jù)的訪(fǎng)問(wèn)及操作更得更加 Pythonic ,替換原生字典在大部分場(chǎng)景下都不會(huì)有太大問(wèn)題。
但同時(shí)也不得不承認(rèn),munch 在一些場(chǎng)景下無(wú)法達(dá)到原生字典的效果,比如我想字典里的 key 為 "1.2"
的時(shí)候,原生字典能很好的表示它。
>>> dict_obj = {"1.2": "hello"} >>> dict_obj["1.2"] 'hello'
切換到 munch ,你會(huì)發(fā)現(xiàn)無(wú)法在初始化 munch 對(duì)象的時(shí)候,傳入 1.2 的 key
>>> from munch import Munch >>> dict_obj = Munch(1.2="hello") File "<stdin>", line 1 dict_obj = Munch(1.2="hello") ^ SyntaxError: expression cannot contain assignment, perhaps you meant "=="?
就算你用原生的字典的方式添加了這個(gè) key-value,也根本無(wú)法使用 .
的方式取到 1.2
對(duì)應(yīng)的 value。
>>> from munch import Munch >>> dict_obj = Munch() >>> dict_obj["1.2"]="hello" >>> dict_obj Munch({'1.2': 'hello'}) >>> dict_obj.1.2 File "<stdin>", line 1 dict_obj.1.2 ^ SyntaxError: invalid syntax
也正是因?yàn)檫@樣,原生字典至今還是不可替代的存在。
以上就今天跟大家分享的內(nèi)容,這篇文章是《Python黑魔法手冊(cè)》 v3.0 版的最后一篇文章,目前 PDF 已經(jīng)制作完成。
到此,相信大家對(duì)“Python黑魔法庫(kù)安裝及操作字典的方法教程”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。