相当于OrderedDict的list.index()?

时间:2015-06-12 08:29:10

标签: python dictionary ordereddictionary

鉴于其性质,OrderedDict中的项目是有序的,人们可能期望它具有类似于列表的index函数的函数。它没有。

index OrderedDict模仿firefox -p Profile_Name -no-remote 的最佳Pythonic /最佳方法是什么?

1 个答案:

答案 0 :(得分:3)

这取决于你想要的index。 如果你想要一个键的索引,你可以做到

o = OrderedDict([('toast',5.80),('waffles',2.30),('pancakes',3.99)])
print o.keys().index('waffles')