在迭代时检查dict中的先前值

时间:2016-05-22 13:51:22

标签: python dictionary

我已经按照Python中的密钥字典进行了排序 我只想检查以前的值

例如

dict_n = {
1:'Smith',
3:'Martin',
7: 'Waterson',
...
9:'Davies',
13:'Smith',
15:'Smith'
}

我想找到史密斯(id = 15)之前的人也叫'史密斯'(id = 13)。所以我需要从Python字典中获取密钥索引(而不是key-1)的值。

我试图通过像list这样的索引枚举(previous = list [index-1]),但它不起作用

for index, key in enumerate(Dict):
    print Dict[index]

0 个答案:

没有答案