gpt4 book ai didi

python - 字典是正确的数据结构吗?

转载 作者:太空宇宙 更新时间:2023-11-03 16:11:55 25 4
gpt4 key购买 nike

我想使用一种数据结构来存储我的数据,如下所示:

data[1][a]
data[1][b]
data[1][c]
data[1][d]
data[2][a]
data[2][b]

...标签 a、b、c、d 从一开始就已知,而 i 则迭代列表中的 1、2、...。

我考虑过使用字典:

dict={} #How to initialize the dictionary ?

mylist=(1, 2, ...)
for i in mylist:
dict[i][a]=something
dict[i][b]=something_else
etc

1) 这是最好使用的数据结构吗?否则你会用什么?2) 如果使用字典结构,如何使用标签 a、b、c 和 d 初始化字典?

最佳答案

如果你想使用 dict.data[1][a]。你可以有一个字典的字典并像这样初始化。

dict={}

mylist=(1, 2, 3)
labels = ('a','b','c','d')
something = 'foo'

for i in mylist:
for l in labels:
if(i in dict):
dict[i].update({l:something})
else:
dict[i] = {l:something}

关于python - 字典是正确的数据结构吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39208453/

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