「Python」items()で辞書のキーと値の組み合わせを確認する
構文
(キー,値) in 辞書名.items())
サンプルコード
# coding: utf-8 #!/usr/bin/python3 cft = {'Taa': '122', 'Tbb': '344', 'Tcc': '566', 'Tdd': '777'} print("辞書のキーと値の存在: ", ('Taa','122') in cft.items()) print("辞書のキーと値の存在: ", ('Tdd','777') in cft.items()) print("辞書のキーと値の存在: ", ('Tcc', '566') not in cft.items())
実行結果
>python 101.py
辞書のキーと値の存在: True
辞書のキーと値の存在: True
辞書のキーと値の存在: False