Python 2.7.5获取导入OrderedDict ImportError:没有名为OrderedDict的模块

时间:2017-08-10 20:50:18

标签: python-2.7 ordereddictionary

导入OrderedDict ImportError:没有名为OrderedDict的模块

我使用python 2.7.5并假设已预安装orderedDict模块。 如何检查模块是否存在,如果不存在,我该如何安装。

我是初学者,谢谢你帮助我。

2 个答案:

答案 0 :(得分:1)

OrderedDict属于collections模块。它不是独立的。

您需要from collections import OrderedDict

答案 1 :(得分:0)

扩展JoshuaRLi所说的,你想要

>>> from collections import OrderedDict

您可以使用

检查可用的模块
>>> help('modules')