Python 辞書(Windows)
辞書をやります。辞書
辞書は{}で定義します。
"""
テストプログラム
"""
# 辞書の定義
dic1 = {'key1': 'value1', 'key2': 'value2', 'key3': 'value3'}
# 辞書の追加
dic1['key4'] = 'value4'
# 辞書の使用
print(dic1['key4'])
# 辞書の削除
del dic1["key3"]
# 辞書の存在確認
print("key3" in dic1)
# キーでループ
for key in dic1.keys():
print(key + "-" + dic1[key])
# バリューでループ
for value in dic1.values():
print("value-" + value)
# キーとバリューのセットでループ
for item in dic1.items():
print("item-" + item[0] + ":" + item[1])
# 辞書の全削除
dic1.clear()
# 辞書のサイズ
print(len(dic1))
実行結果
ページのトップへ戻る