python defaultdict用法

Posted

tags:

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

# defaultdict Examples
# Using list as the default_factory, it is easy to group a sequence of key-value pairs into a dictionary of lists:

s = [('yellow', 1), ('blue', 2), ('yellow', 3), ('blue', 4), ('red', 1)]
d = defaultdict(list)
for k, v in s:
    d[k].append(v)

sorted(d.items())

以上是关于python defaultdict用法的主要内容,如果未能解决你的问题,请参考以下文章

python字典之defaultdict详解

Python进阶可能是全网最详细的defaultdict讲解

Python进阶可能是全网最详细的defaultdict讲解

Python进阶可能是全网最详细的defaultdict讲解

简介Python的collections模块中defaultdict类型

python 一些函数和类用法记录