摘要: 1.3.5 OrderedDict 有序字典 OrderedDict是dict的子类,它记住了内容添加的顺序。 import collections print 'Regular dictionary:' d = {} d['a'] = 'A' d['b'] = 'B' d['c'] = 'C' f 阅读全文
posted @ 2016-02-18 10:59 郭导技术小站 阅读(8426) 评论(0) 推荐(0) 编辑