if string in dictionary python code example
Example 1: python dictionary contains key
if key in dictionary:
print(True)
Example 2: check if a key exists in a dictionary python
d = {"key1": 10, "key2": 23}
if "key1" in d:
print("this will execute")
if "nonexistent key" in d:
print("this will not")