[Python]OrderedDictオブジェクトを作成するサンプル

2021年2月24日

書式
collections.OrderedDict()
使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
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

Python

Posted by arkgame