1. 程式人生 > >ordereddict can't import

ordereddict can't import

有序字典ordereddict import問題:

由於版本問題,他們所屬的包不同,所以要從不同包中引用,下面是相容模式:

try:
    from collections import OrderedDict
except ImportError:
    from ordereddict import OrderedDict