# 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!")
# Short way
fruits = {'apple': 2, 'pear': 5, 'strawberry': 3}
if fruits.get('apple'):
print('Key found')