Pythonの辞書(Dictionary)を使用すると、キーと値のペアを保存できます。特定のキーが存在するかどうかを確認するには、次のコードを使用します。

my_dict = {'apple': 1, 'banana': 2, 'orange': 3}

if 'apple' in my_dict:
    print('apple exists in the dictionary')
else:
    print('apple does not exist in the dictionary')

これは、 ‘apple’キーがmy_dictに存在するかどうかを確認する例です。同様に、他のキーも確認できます。

my_dict = {'apple': 1, 'banana': 2, 'orange': 3}

if 'pear' in my_dict:
    print('pear exists in the dictionary')
else:
    print('pear does not exist in the dictionary')

この例では、 ‘pear’キーがmy_dictに存在しないため、「pear does not exist in the dictionary」と出力されます。

以上が、Pythonで特定のキーが存在するかどうかを確認する方法です。