このサイトはアドセンスやアフィリエイト広告を利用しています

python

Pythonで辞書からforループでキーと値を取得する方法は.items()

pythonの .items() の使い方

変数を1つでitems() forを回した場合

a = {'one': 1, 'two': 2, 'three': 3}
for x in a.items():
    print(x)
実行結果
('one', 1)
('two', 2)
('three', 3)

ディクショナリーがタプル形式の配列になるようだ

変数を2つでitems() forを回した場合

a = {'one': 1, 'two': 2, 'three': 3}

for x, y in a.items():
    print(x, y)
実行結果
one 1
two 2
three 3

辞書のkeyと値を別々に分けて抽出することができる

-python