诸神缄默不语-个人CSDN博文目录
ordered-set · PyPI
安装方式:pip install ordered-set
使用:
输出:OrderedSet(['a', 'b', 'r', 'c', 'd'])
index()
add()
(都可以以列表为输入)|
&
-
官方文档:collections — Container datatypes — Python 3.11.3 documentation
d = defaultdict(list)
s = [('yellow', 1), ('blue', 2), ('yellow', 3), ('blue', 4), ('red', 1)]
for k, v in s:
d[k].append(v)
sorted(d.items())
#输出值:[('blue', [2, 4]), ('red', [1]), ('yellow', [1, 3])]