时间:2021-05-23
collections模块
collections模块:提供一些python八大类型以外的数据类型
python默认八大数据类型:
- 整型
- 浮点型
- 字符串
- 字典
- 列表
- 元组
- 集合
- 布尔类型
1、具名元组
具名元组只是一个名字
应用场景:
① 坐标
# 应用:坐标from collections import namedtuple# 将"坐标"变成"对象"的名字# 传入可迭代对象必须是有序的point = namedtuple("坐标", ["x", "y" ,"z"]) # 第二个参数既可以传可迭代对象# point = namedtuple("坐标", "x y z") # 也可以传字符串,但是字符串之间以空格隔开p = point(1, 2, 5) # 注意元素的个数必须跟namedtuple中传入的可迭代对象里面的值数量一致# 会将1 --> x , 2 --> y , 5 --> zprint(p)print(p.x)print(p.y)print(p.z)执行结果:
坐标(x=1, y=2, z=5)125② 扑克牌
# 扑克牌from collections import namedtuple# 获取扑克牌对象card = namedtuple("扑克牌", "color number")# 产生一张张扑克牌red_A = card("红桃", "A")print(red_A)black_K = card("黑桃", "K")print(black_K)执行结果:
扑克牌(color='红桃', number='A')扑克牌(color='黑桃', number='K')③ 个人信息
# 个人的信息from collections import namedtuplep = namedtuple("china", "city name age")ty = p("TB", "ty", "31")print(ty)执行结果:
china(city='TB', name='ty', age='31')2、有序字典
python中字典默认是无序的
collections中提供了有序的字典: from collections import OrderedDict
# python默认无序字典dict1 = dict({"x": 1, "y": 2, "z": 3})print(dict1, " ------> 无序字典")print(dict1.get("x"))# 使用collections模块打印有序字典from collections import OrderedDictorder_dict = OrderedDict({"x": 1, "y": 2, "z": 3})print(order_dict, " ------> 有序字典")print(order_dict.get("x")) # 与字典取值一样,使用.get()可以取值print(order_dict["x"]) # 与字典取值一样,使用key也可以取值print(order_dict.get("y"))print(order_dict["y"])print(order_dict.get("z"))print(order_dict["z"])执行结果:
{'x': 1, 'y': 2, 'z': 3} ------> 无序字典1OrderedDict([('x', 1), ('y', 2), ('z', 3)]) ------> 有序字典112233以上就是python collections模块的使用的详细内容,更多关于python collections模块的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
python内置模块collections介绍collections是Python内建的一个集合模块,提供了许多有用的集合类。1、namedtuplepytho
collections模块这个模块实现了特定目标的容器,以提供Python标准内建容器dict、list、set、tuple的替代选择。Counter:字典的子
在Python中有一些内置的数据类型,比如int,str,list,tuple,dict等。Python的collections模块在这些内置数据类型的基础上,
很多人认为python中的字典是无序的,因为它是按照hash来存储的,但是python中有个模块collections(英文,收集、集合),里面自带了一个子类O
最近在pythonTip做题的时候,遇到了deque模块,以前对其不太了解,现在特此总结一下deque模块是python标准库collections中的一项,它