python-day20--collections模块

Posted

tags:

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

1.namedtuple: 生成可以使用名字来访问元素内容的tuple

技术分享
>>> from collections import namedtuple
>>> Point = namedtuple(Point, [x, y])
>>> p = Point(1, 2)
>>> p.x
>>> p.y
View Code

2.OrderedDict: 有序字典

>>> from collections import OrderedDict
>>> d = dict([(a, 1), (b, 2), (c, 3)])
>>> d # dict的Key是无序的
{a: 1, c: 3, b: 2}
>>> od = OrderedDict([(a, 1), (b, 2), (c, 3)])
>>> od # OrderedDict的Key是有序的
OrderedDict([(a, 1), (b, 2), (c, 3)])

3.defaultdict: 带有默认值的字典

技术分享
from collections import defaultdict

values = [11, 22, 33,44,55,66,77,88,99,90]

my_dict = defaultdict(list)

for value in  values:
    if value>66:
        my_dict[k1].append(value)
    else:
        my_dict[k2].append(value)

defaultdict字典解决方法
View Code

 

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

python-day1

从零开始学Python-day8

python-day2

python-day2 字典

Python-Day3

Python-Day1