[Python]OrderedDictオブジェクトを作成するサンプル
書式
collections.OrderedDict()
使用例
import collections
cft = collections.OrderedDict()
cft['key1'] = 31
cft['key2'] = 32
cft['key3'] = 43
print(cft)
print(cft['key3'])
import collections
cft = collections.OrderedDict()
cft['key1'] = 31
cft['key2'] = 32
cft['key3'] = 43
print(cft)
print(cft['key3'])
import collections cft = collections.OrderedDict() cft['key1'] = 31 cft['key2'] = 32 cft['key3'] = 43 print(cft) print(cft['key3'])
結果
OrderedDict([('key1’, 31), ('key2’, 32), ('key3’, 43)])
43