很多人認為python中程式設計客棧的字典是無序的,因為它是按照hash來儲存的,但是python中有個模組collections(英文,收集、集合),裡面自帶了乙個子類
ordereddict,實現了對字典物件中元素的排序。請看下面的例項:
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 "\norder dictionary"
d1 = collec程式設計客棧tion程式設計客棧s.ordereddict()
d1['a'] = 'a'
d1['b'] = 'b'
d1['c'] = 'c'
d1['1'] = '1'
d1['2'] = '2'
for k,v in d1.items():
print k,v
輸出:regular dictionary
a ac c
b border dictionary
a ab b
c c1 1
2 2可以看到,同樣是儲存了abc等幾個元素,但是使用ordereddict會根據放入元素的先後順序進行排序。所以輸出的值是排好序的。
ordereddict物件的字典物件,如果其順序不同那麼python也會把他們當做是兩個不同的物件,請看事例:
print 'regular dictionary程式設計客棧:'
d2={}
d2['a']='a'
d2['b']='b'
d2['c']='c'
d3={}
d3['c']='c'
d3['a']='a'
d3['b']='b'
print d2 == d3
print '\nordereddict:'
d4=collections.ordereddict()
d4['a']='a'
d4['b']='b'
d4['c']='c'
d5=collections.ordereddict()
d5['c']='c'
d5['a']='a'
d5['b']='b'
print d1==d2
輸出:regular dictionary:
true
ordereddict:
false
再看幾個例子:
dd =
#按key排序
kd = collections.ordereddict(sorted(dd.items(), key=lambda t: t[0]))
print kd
#按照value排序
vd = collections.ordereddict(sorted(dd.items(),key=lambda t:t[1]))
print vd
#輸出ordereddict([('apple',程式設計客棧 4), ('banana', 3), ('orange', 2), ('pear', 1)])
ordereddict([('pear', 1), ('orange', 2), ('banana', 3), ('apple', 4)])
本文標題: python中ordereddict的使用方法詳解
本文位址:
python中的有序字典OrderedDict
1.ordereddict 有序字典 ordereddict是dict的子類,它記住了內容新增的順序。比較時,ordereddict要內容和順序完全相同才會視為相等。python view plain copy import collections d collections.ordereddict...
python中 python中的 與
這一部分首先要理解python記憶體機制,python中萬物皆物件。對於不可變物件,改變了原來的值,其別名 變數名 繫結到了新值上面,id肯定會改變 對於可變物件,操作改變了值,id肯定會變,而 是本地操作,其值原地修改 對於 號操作,可變物件和不可變物件呼叫的都是 add 操作 對於 號操作,可變...
python中否定for 在python中否定函式
有沒有一種方法可以否定乙個函式,使它返回負數。在我的函式中,我有條件句,每個條件句都讓這個 烏龜 移動。有沒有一種方法可以否定這一點,所以烏龜的每乙個動作都是否定的。我說的是 狀況 在def ttinterpret program interpret program as a tinyturtle ...