gpt4 book ai didi

Python:存储与字典中的键关联的列表值

转载 作者:太空宇宙 更新时间:2023-11-04 07:47:26 24 4
gpt4 key购买 nike

我知道 python 字典如何存储键:值元组。在我正在处理的项目中,我需要存储与列表值关联的键。前任:键 -> [0,2,4,5,8]在哪里,key 是来自文本文件的单词列表值包含代表单词出现的 DocID 的整数。

只要我在另一个文档中找到相同的词,我就需要将该 DocID 附加到列表中。

我怎样才能做到这一点?

最佳答案

您可以像这样使用 defauldict:

>>> import collections
>>> d = collections.defaultdict(list)
>>> d['foo'].append(9)
>>> d
defaultdict(<type 'list'>, {'foo': [9]})
>>> d['foo'].append(90)
>>> d
defaultdict(<type 'list'>, {'foo': [9, 90]})
>>> d['bar'].append(5)
>>> d
defaultdict(<type 'list'>, {'foo': [9, 90], 'bar': [5]})

关于Python:存储与字典中的键关联的列表值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3694031/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com