gpt4 book ai didi

swift - 有没有办法遍历 Key :[Value1:[Value2]]? 形式的字典

转载 作者:行者123 更新时间:2023-11-28 13:53:29 24 4
gpt4 key购买 nike

我正在尝试使用 Key:[Value1:[Value2]] 形式遍历 Dictionary。

本质上,我试图一次遍历字典中的一项。但是,我只能在表单中打印迭代

key

(["Value1":[value2(0), value2(1), ..., value2(n)]]

其中(0), (1), ..., (n)表示value2数组的第n个值

var col_read: [String: [String:[Double]]] = ["key":["value1":[value2]]]

// array
var value2 = [Double]()

for (key, value1, value1:[value2]) in col_read
{
print("\(key)\n\(value1)\n(value1:[value2])")
}

我想以形式打印迭代

Key

Value1

Value2(0)

Value2(1)

. . .

Value2(n)

最佳答案

很明显是这样的?

for (key, value) in col_read {
print(key)
for (innerKey, innerValue) in value {
print(innerKey)
for number in innerValue {
print(number)
}
}
}

P.S - 使用 lowerCamelCase 作为 API Design Guidelines 中提到的变量名称.

关于swift - 有没有办法遍历 Key :[Value1:[Value2]]? 形式的字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54229430/

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