1. 程式人生 > >python標準庫之collections

python標準庫之collections

信息 import mda font pre 區別 順序 item imp

一.模塊 collections 中的一個類—— OrderedDict 。
(字典讓你能夠將信息關聯起來,但它們不記錄你添加鍵 — 值對的順序。要創建字典並記錄其
中的鍵 — 值對的添加順序,可使用模塊 collections 中的 OrderedDict 類。 OrderedDict 實例的行為
幾乎與字典相同,區別只在於記錄了鍵 — 值對的添加順序。)

from collections import OrderedDict
#假設age_1 到age_5 都存在(不寫了)
my_dict=OrderedDict()
my_dict[age_1]="10"
my_dict[age_2]="20"
my_dict[age_3]="30"
my_dict[age_4]="40"
my_dict[age_5]="50"
for k,v in my_dict.items():
print("他們的順序應該是:"+k+"對應"+v)

python標準庫之collections