python collections 数据结构模块

Posted FRESHMANS

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python collections 数据结构模块相关的知识,希望对你有一定的参考价值。

 

namedtuple类

导入模块

from collections import namedtuple

 

使用方法及说明


#pycharm 里按住 ctrl键点击 collections可查看源码

#collections数据结构
#__all__ = [‘deque‘, ‘defaultdict‘, ‘namedtuple‘, ‘UserDict‘, ‘UserList‘,‘UserString‘, ‘Counter‘, ‘OrderedDict‘, ‘ChainMap‘]


使用说明:

#猜包功能
name = ("lijie",‘ll‘) user = ("aa",23,189,‘boddy‘) username,age,height,edu = user print (username,age,height,edu)
打印结果:
aa 23 189 boddy

#另一种方法 username,*other = user print (username,other)

打印结果:

aa [23, 189, ‘boddy‘]

 

tuple 可作为字典的key,而list不可以,示例:

name_tuple = ("test",22,185,"baskerball")
name_list = ["test1",22,188,"baseball"]

dd = {}
dd[name_tuple] = ‘boddy‘
print (dd)

dd[name_list] = ‘body‘
print (dd)

打印结果:

{(‘test‘, 22, 185, ‘baskerball‘): ‘boddy‘}

Traceback (most recent call last):
File "D:/python-script/collections_module/chapter1/collection_module.py", line 29, in <module>
dd[name_list] = ‘body‘
TypeError: unhashable type: ‘list

以上是关于python collections 数据结构模块的主要内容,如果未能解决你的问题,请参考以下文章

python的Collections 模块

python3 collections数据类型模块

python time模块 sys模块 collections模块

python(43):collections模块

Python collections模块实例

《Python》常用模块之collections模块