「Python」コンストラクタに引数を指定するサンプル
書式
[('key’, value1),xxx]
(['key’, value], xxx)
使用例
import collections cftA = collections.OrderedDict(k1=66, k2=77, k3=88) cftB = collections.OrderedDict([('key1', 51), ('key2', 72), ('key3', 83)]) cftC = collections.OrderedDict((['keyA', 99], ['kyeB', 88], ['keyC', 77])) print(cftA) print(cftB) print(cftC)
実行結果
OrderedDict([('k1’, 66), ('k2’, 77), ('k3’, 88)])
OrderedDict([('key1’, 51), ('key2’, 72), ('key3’, 83)])
OrderedDict([('keyA’, 99), ('kyeB’, 88), ('keyC’, 77)])