今天来聊一聊与字典相关的话题。
字典是 Python 中基础的数据结构之一,字典的使用,可以说是非常的简单粗暴,但即便是这样一个与世无争的数据结构,仍然有很多人 “看不惯它” 。
也许你并不觉得,但我相信,你看了这篇文章后,一定会和我一样,对原生字典开始有了偏见。
我举个简单的例子吧
当你想访问字典中的某个 key 时,你需要使用字典特定的访问方式,而这种方式需要你键入 一对中括号 还有 一对引号
profile = dict(name=“iswbm”)
{‘name’: ‘iswbm’}profile
‘iswbm’profile[“name”]
是不是开始觉得忍无可忍了?
如果可以像调用对象属性一样使用 去访问 key 就好了,可以省去很多多余的键盘击入,就像这样子
‘iswbm’profile.name
是的,今天这篇文章就是跟大家分享一种可以直接使用 访问和操作字典的一个黑魔法库 – 。
- 安装方法
$ python -m pip install munch
- 简单示例
from munch import Munch
profile = Munch()
Trueisinstance(profile, dict)
并实现了点式赋值与访问, 与 是等价的
profile.name = “iswbm”
profile.age = 18
Munch({‘name’: ‘iswbm’, ‘age’: 18})profile
‘iswbm’profile.name
‘iswbm’profile[“name”]
- 兼容字典的所有操作
首先是:增删改查
新增元素
profile[“gender”] = “male”
Munch({‘name’: ‘iswbm’, ‘age’: 18, ‘gender’: ‘male’})profile
修改元素
profile[“gender”] = “female”
Munch({‘name’: ‘iswbm’, ‘age’: 18, ‘gender’: ‘female’})profile
删除元素
‘female’profile.pop(“gender”)
Munch({‘name’: ‘iswbm’, ‘age’: 18})profile
del profile[“age”]
Munch({‘name’: ‘iswbm’})profile
再者是:一些常用方法
dict_keys([‘name’])profile.keys()
dict_values([‘iswbm’])profile.values()
‘iswbm’profile.get(‘name’)
‘male’profile.setdefault(‘gender’, ‘male’)
Munch({‘name’: ‘iswbm’, ‘gender’: ‘male’})profile
- 设置返回默认值
profile = {}
Traceback (most recent call last):profile[“name”]
File “”, line 1, in
KeyError: ‘name’
对于这种情况,通常我们会使用 get 来规避
profile = {}
‘undefined’profile.get(“name”, “undefined”)
当然你在 munch 中仍然可以这么用,不过还有一种更好的方法:使用 DefaultMunch,它会在你访问不存在的 key 时,给你返回一个设定好的默认值
from munch import DefaultMunch
profile = DefaultMunch(“undefined”, {“name”: “iswbm”})
DefaultMunch(‘undefined’, {‘name’: ‘iswbm’})profile
‘undefined’profile.age
DefaultMunch(‘undefined’, {‘name’: ‘iswbm’})profile
- 工厂函数自动创建key
若你想访问不存在的 key 时,自动触发给原 munch 中新增你想要访问的 key ,并为其设置一个默认值,可以试一下 传入一个工厂函数。
from munch import DefaultFactoryMunch
profile = DefaultFactoryMunch(list, name=‘iswbm’)
DefaultFactoryMunch(list, {‘name’: ‘iswbm’})profile
[]profile.brothers
DefaultFactoryMunch(list, {‘name’: ‘iswbm’, ‘brothers’: []})profile
- 序列化的支持
转换成 JSON
from munch import Munch
munch_obj = Munch(foo=Munch(lol=True), bar=100, msg=‘hello’)
import json
‘{“foo”: {“lol”: true}, “bar”: 100, “msg”: “hello”}’json.dumps(munch_obj)
转换成 YAML
from munch import Munch
munch_obj = Munch(foo=Munch(lol=True), bar=100, msg=‘hello’)
import yaml
‘!munch.Munch\nbar: 100\nfoo: !munch.Munch\n lol: true\nmsg: hello\n’yaml.dump(munch_obj)
!munch.Munchprint(yaml.dump(munch_obj))
bar: 100
foo: !munch.Munch
lol: true
msg: hello
建议使用 去掉
bar: 100print(yaml.safe_dump(munch_obj))
foo:
lol: true
msg: hello
以上就是关于 munch 的使用全解,替换原生字典绝无问题,munch 的进一步封装使得数据的访问及操作更得更加 Pythonic 了,希望有一天这个特性能够体现在原生的字典上。
如果对你有帮助,别忘记点个在看,谢谢。
点个在看你最好看
【人工智能|终结 Python 原生字典(这个库要逆天改命了)】python福利教程领取方式:
1、点赞+评论(勾选“同时转发”)
2、关注小编。并私信回复关键字【19】
(一定要私信哦~点击我的头像就能看到私信按钮了)
推荐阅读
- python|终结 Python 原生字典(这个库真的要逆天改命了)
- 自动驾驶|自动驾驶数据服务进入2.0时代
- 算法|历时一年,论文终于被国际顶会接收了
- 机器学习|机器学习算法[1]--线性回归,岭回归,Lasso回归原理详解及sklearn实现
- JavaSE|【JavaSE】深入浅出掌握泛型及泛型相关细节(图文并茂)
- 数据库|MySQL 暴跌!
- 为什么range不是迭代器(range到底是什么类型?)
- 大名鼎鼎的Requests库用了什么编码风格()
- Python进阶(自定义对象实现切片功能)