Python - 辞書にキーがあることを確認する

Pythonでどのキーがdictにあるかを確認する方法を紹介します。

1. 辞書にキーが存在することを確認する: for key in dict

以下のコードで、特定のキーが辞書に存在することを確認できます。

my_dict = {'a': 1, 'b': 2, 'c': 3, 'd': 4}

if 'a' in my_dict:
    print("It have the key a")

Output:

It have the key a

2. 辞書にキーがないことを確認する: for key not in dict

以下のコードで、特定のキーが辞書にないことを確認できます。

my_dict = {'a': 1, 'b': 2, 'c': 3, 'd': 4}

if 'e' not in my_dict:
    print("It doesn't have the key e")

Output:

It doesn't have the key e

References

Related Posts

codechachaCopyright ©2019 codechacha