在列表中查找分配的值

时间:2019-06-21 20:59:42

标签: python-3.x

我正在学习python,例如列表有问题

list=[{'box':[1,2,3,4],'dog':67}]

在此列表中,所有值仅在一个索引处分配,并且在box属性中分配了值。如何找到在box属性中分配了什么值。

1 个答案:

答案 0 :(得分:0)

l[0]是带有dogbox的字典。您可以使用d[key]来访问词典中的条目,即

>>> l=[{'box':[1,2,3,4],'dog':67}]
>>> l[0]  # this is the dict
{'box': [1, 2, 3, 4], 'dog': 67}
>>> l[0]['box'] # first get the dict, then a key in the dict
[1, 2, 3, 4]