辞書の要素の存在確認

inを使用します。

items = {"one": 1, "two": 2, "three": 3}

print("one" in items) # True
print("zero" in items) # False

関連項目