Python collections模块使用方法详解
(编辑:jimmy 日期: 2025/1/19 浏览:3 次 )
一、collections模块
1.函数namedtuple
(1)作用:tuple类型,是一个可命名的tuple
(2)格式:collections(列表名称,列表)
(3)"htmlcode">
import collections # help(collections.namedtuple) Point = collections.namedtuple("Point",['x','y']) p = Point(15,45) print(p.x+p.y) print(p[0]+p[1]) #支持索引等 #应用举例 Circle = collections.namedtuple('Circle',['x','y','r']) circle = Circle(14,15,45) propotion = circle[2]*circle[2]*3.141596 print("圆的面积为",propotion)
2.函数deque
(1)作用:比较方便的解决了频繁删除插入带来的效率问题
(2)"htmlcode">
q = collections.deque(['a','b','c']) print(q) q.append('sada') q.appendleft('left') print(q) help(collections.deque)
3.函数:defaultdict
(1)作用:当读取dict不存在的属性时,会返回默认值
(2)格式:collections.defaultdict(函数)
(3)"htmlcode">
d1 = {"one":1,"two":2,"three":3} print("four") #上面的会报错,下面的就会返回函数,告诉我们错了 func = lambda:"错了" d2 = collections.defaultdict(func) d2['one']=1 d2['two']=2 print(d2['four'])
4.函数Couter
(1)作用:统计字符串的个数
(2)格式:collections.Counter()
(3)返回值:可迭代内容的字典的Counter类
(4)例子:
list1 = collections.Counter("aaabbbccc") print(list1) list2 = collections.Counter(['abc','sad','sad','abc','abc','ffds']) print(list2)
(5)总结"_blank" href="https://github.com/ruigege66/Python_learning/blob/master/d21_1_collections_module" rel="external nofollow" >https://github.com/ruigege66/Python_learning/blob/master/d21_1_collections_module
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇:linux下python中文乱码解决方案详解