1. 程式人生 > >Python - Collections系列

Python - Collections系列

模塊 gpo counter post med 默認 art detail dict

collections的常用類型有:

計數器(Counter)

雙向隊列(deque)

默認字典(defaultdict)

有序字典(OrderedDict)

可命名元組(namedtuple)

使用以上類型時需要導入模塊 from collections import *

詳見http://blog.csdn.net/songfreeman/article/details/50502194

Python - Collections系列