Cómo imprimir parte específica de un diccionario en Python
>>> print(fruit.get('cherry', 99))
99
Light Lark
>>> print(fruit.get('cherry', 99))
99