我一直在研究如何在python 2.7中使用 - 而不是从头创建 - 一个linkedHashmap。我的搜索将我带到Equivalent for LinkedHashMap in Python,How do you retrieve items from a dictionary in the order that they're inserted?,然后最终转到http://anthon.home.xs4all.nl/Python/ordereddict/,声称有序的是
backported to 2.7 there is an OrderedDict class available in the collections modules
这是否意味着我不需要任何第三方依赖?如果是这样,如何在不使用第三方工具的情况下使用Python 2.7访问OrderedDict?