##Pythonの辞書(dict)のforループ処理(keys, values, items)
Pythonの辞書オブジェクトdictの要素をfor文でループ処理するには辞書オブジェクトdictのメソッドkeys(), values(), items()を使う。
test = {'key1': 1, 'key2': 2, 'key3': 3}
keys(): 各要素のキーに対してforループ処理
※普通にfor文回しても同じのができる
for A in test.keys():
print(A)
# key1
# key2
# key3
values(): 各要素の値に対してforループ処理
for B in test.values():
print(B)
# 1
# 2
# 3
items(): 各要素のキーと値に対してforループ処理
for C, D in test.items():
print(C, D)
# key1 1
# key2 2
# key3 3