list,tuple,dict,set常用方法
Posted welcome_home
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了list,tuple,dict,set常用方法相关的知识,希望对你有一定的参考价值。
Python中list,tuple,dict,set常用方法
collections模块提供的其它有用扩展类型
from collections import Counter from collections import defaultdict c = Counter() for ch in \'programming\': c[ch] = c[ch]+1 dd = defaultdict(lambda:0) dd[0]=dd[0]+1 print(dd[0]) print(c) 结果 ------------------------- 1 Counter({\'g\': 2, \'m\': 2, \'r\': 2, \'n\': 1, \'i\': 1, \'a\': 1, \'p\': 1, \'o\': 1})
注意:defaultdict可以设置key不存在时的返回值(不报错),而不像dict[]抛出异常
以上是关于list,tuple,dict,set常用方法的主要内容,如果未能解决你的问题,请参考以下文章
python-列表list- 元组(tuple)- 集合(set)-字典(dict)-实例代码
Python 学习笔记 2Python中常用集合类型:List,Tuple,Set,Dict使用简介
Python中list,tuple,dict,set的区别和用法