phyton find is a key in the dictionary code example
Example 1: how to know if a key is in a dictionary python
dict = {"key1": 1, "key2": 2}
if "key1" in dict:
Example 2: find a key in a dictionary python
# How to find a key / check if a key is in a dict
# Easiest way
fruits = {'apple': 2, 'pear': 5, 'strawberry': 3}
if 'apple' in fruits:
print("Key found!")
else:
print("Key not found!")