gpt4 book ai didi

arrays - 如何快速访问字典中包含的数组元素

转载 作者:行者123 更新时间:2023-11-30 14:03:46 26 4
gpt4 key购买 nike

我花了一些时间尝试寻找这个问题,但还没有找到解决方案。我正在尝试访问字典中的特定数组值。下面是我想要做的事情的一般代码/解释。

var dict = ["1": [1,2,3,4,5], "2": [6,7,8,9,10], "3": [11,12,13,14,15]]

//now lets say I want to access the 3rd value of dict["2"] = 8
//I have tried the following and failed

print(dict["2": [2]])
print(dict["2"][2])

谢谢

最佳答案

以下是实现这一目标的方法:

var dict = ["1": [1,2,3,4,5], "2": [6,7,8,9,10], "3": [11,12,13,14,15]]
let temp = dict["2"]![2] // 8

关于arrays - 如何快速访问字典中包含的数组元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32655473/

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