最佳答案
假设我有以下代码:
import collections
d = collections.OrderedDict()
d['foo'] = 'python'
d['bar'] = 'spam'
有没有办法我可以用编号的方式访问这些项目,比如:
d(0) #foo's Output
d(1) #bar's Output