鉴于其性质,OrderedDict
中的项目是有序的,人们可能期望它具有类似于列表的index
函数的函数。它没有。
对index
OrderedDict
模仿firefox -p Profile_Name -no-remote
的最佳Pythonic /最佳方法是什么?
答案 0 :(得分:3)
这取决于你想要的index
。
如果你想要一个键的索引,你可以做到
o = OrderedDict([('toast',5.80),('waffles',2.30),('pancakes',3.99)])
print o.keys().index('waffles')