[TOC=1,5]
>[success] # defaultdict 解决keyError 问题
~~~
1.使用传统的字典的时候,当调用字典中不存在的key时候会出现异常错误
2.解决的办法我们是有get(k,None) 第一个是键第二个是默认值
3.调用的时候我们可以使用get,创建的时候,我们就可以使用defaultdict方法
~~~
>[danger] ##### 传统字典类型 -- keyError 异常
* 常见问题 ,统计列表数据
~~~
bag = ['orange', 'cherry', 'apple', 'blueberry']
count = {}
for fruit in bag:
count[fruit] += 1
打印结果:
KeyError: 'orange'
~~~
>[danger] ##### 案例--defaultdict,统计列表中元素产生的次数
~~~
1.可以在字典初始化的时候,为不存的k 设置好默认值,但必须是可调用的对象,
字典,元组,列表,甚至lambda/函数
~~~
* 上面的例子就可以写成
~~~
from collections import defaultdict
bag = ['orange', 'cherry', 'apple', 'blueberry']
dd = defaultdict(lambda:0)
for i in bag:
dd[i] +=1
打印结果:
defaultdict(<function <lambda> at 0x000000DFB645A7B8>, {'orange': 1, 'cherry': 1, 'apple': 1, 'blueberry': 1})
~~~
* 下面的例子是用传统的方法,做一次K是否存在判断,不存在设置默认值
~~~
bag = ['orange', 'cherry', 'apple', 'blueberry']
dd = {}
for i in bag:
if i not in dd:
dd[i] = 1
else:
dd[i] += 1
print(dd)
打印结果:
{'orange': 1, 'apple': 1, 'cherry': 1, 'blueberry': 1}
~~~
>[danger] ##### 基本的使用
* 搭配 常见的 对象 list set
~~~
from collections import defaultdict
dd = defaultdict(list)
print(dd['k'])
打印结果:
[]
~~~
* 自带的函数例如int
~~~
dd = defaultdict(int)
print(dd['k'])
打印结果:
0
~~~
* 搭配 匿名函数
~~~
from collections import defaultdict
dd = defaultdict(lambda :0)
print(dd['k'])
打印结果:
0
~~~
* 搭配 函数
~~~
from collections import defaultdict
def zero():
return 0
dd = defaultdict(zero)
print(dd['k'])
打印结果:
0
~~~
>[danger] ##### 原理实现
~~~
from collections import defaultdict
print(defaultdict.__missing__.__doc__)
打印结果:
__missing__(key) # Called by __getitem__ for missing key; pseudo-code:
if self.default_factory is None: raise KeyError((key,))
self[key] = value = self.default_factory()
return value
~~~
<a href="https://docs.python.org/3/library/stdtypes.html#dict"> 官方文档对__missing__ 解释</a> 如下
~~~
Return the item of d with key key. Raises a KeyError if key is not in the map.
If a subclass of dict defines a method __missing__() and key is not present,
the d[key] operation calls that method with the key key as argument. The
d[key] operation then returns or raises whatever is returned or raised by
the __missing__(key) call. No other operations or methods invoke
__missing__(). If __missing__() is not defined, KeyError is raised. __missing__() must be a method; it cannot be an instance variable:
~~~
~~~
>>> class Counter(dict):
... def __missing__(self, key):
... return 0
>>> c = Counter()
>>> c['red']
0
>>> c['red'] += 1
>>> c['red']
1
~~~
当访问不存在的键时,dict[key]会调用__missing__()方法取得默认值。
- PYTHON-- 基础
- Python -- 变量、常量、注解
- 算数\比较\赋值\逻辑运算符
- Python -- input 控制台用户输入
- Python -- 流程控制/循环语句
- Python -- 切片
- Python -- 数据类型
- 基础数据类型
- int -- 数字类型
- str -- 字符类型
- bool -- 布尔类型
- list -- 列表
- type -- 元祖
- dict -- 字典
- set -- 集合
- Python -- 深浅copy
- Python -- 文件的读写
- Python -- 函数
- 函数 -- 做参数使用
- 函数 -- 闭包
- 函数 -- 生成器
- 函数 -- 列表推导式
- 案例
- 基础案例一
- 基础案例二
- 基础案例三
- COOKBOOK
- LIST、STR、DICT、TUPLE
- LIST - 列表方法总结
- 一、序列拆分成单独变量
- 二、* 妙用
- 三、deque- 双向队列
- 四、求找到最大或最小的N个元素
- 4.1 heapq-- 简单使用
- 五、去重并保持列表顺序不变
- 六、切片slice
- 七、counter 统计序列中元素次数
- 八、itemgetter 列表套着字典排序
- 九、处理大量的列表数据
- 十、随机事件处理列表
- DICT - 字典的总结方法
- 一、defaultdict 解决 KeyError
- 二、OrdereDict有序字典
- 三、zip 和 max/min 比较
- IDCT和LIST- 推导式
- 一、LIST 推导式
- 二、字典推到式
- TUPLE-元组
- 一、命名元组
- STR-字符串
- 一、常见的字符串方法
- 二、字符串拆分
- 三、字符串的位置匹配
- 四、字符串替换
- 五、正则大小写/换行匹配
- 六、对字节类型处理
- 数字、日期、时间处理
- 一、数字的处理
- 二、时间换算
- 2.1 时间运算
- 2.2计算某一时刻上周几的日期
- 2.2对时间转换格式优化
- 迭代器和生成器
- 一、iter 迭代器 使用案例
- 二、生成器 yeild
- 三、构建一个反向迭代方法
- 四、实现反正函数构造
- 五、迭代对象切片/跳过元素
- 六、迭代出所有的组合排列
- 七、索引-值迭代序列化
- 八、zip 同时迭代多个序列
- 九、同时循环多个可迭代对象
- 十、yield from 递归案例
- 十一、合并序列,并按顺序输出
- 十二、使用 iter 替代 while True
- 操作文件
- 一、处理文件路径
- 二、检测文件/获取文件信息
- 函数
- 一、函数基本案例使用
- 二、匿名函数
- 三、回调函数
- 四、闭包实现一个单个方法类
- 五、函数嵌套回调函数
- 类与对象
- 一、str/repr--让类字符串表示
- 二、format -- 格式化类的内容
- 三、with -- 上下文管理类
- 四、创建节省内存的类
- 五、将类里面方法变成属性
- 六、调用父类方法
- 七、扩展子类中的属性
- 八、创建新的类或者实类属性
- 九、简化数据结果,简化init
- 十、python 接口写法
- 十一、通过类属性创建委托访问
- 十二、__new__重新初始化init
- 十三、通过字符串调用类
- 元编程
- 一、装饰器
- 1.1 去掉装饰器修饰
- 1.2 可接受参数装饰器
- 1.3利用装饰器对函数参数类型检查
- 1.4编写类装饰器
- 1.5为类方法和静态方法加装饰器
- 1.6通过装饰器给装饰函数加参数
- 线程和进程