這篇文章主要介紹了Python有序字典簡單實現方法,涉及Python使用OrderedDict方法進行字典排序的相關操作技巧,需要的朋友可以參考下
本文實例講述了Python有序字典簡單實作方法。分享給大家供大家參考,具體如下:
程式碼:
# -*- coding: UTF-8 -*- import collections print 'Regular dictionary:' d = {} d['a'] = 'A' d['b'] = 'B' d['c'] = 'C' for k, v in d.items(): print k, v print '\nOrderedDict:' d = collections.OrderedDict() d['a'] = 'A' d['b'] = 'B' d['c'] = 'C' for k, v in d.items(): print k, v
執行結果:
##
以上是Python實作有序字典方法範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!