Как печатать определенную часть словаря в Python
>>> print(fruit.get('cherry', 99))
99
Light Lark
>>> print(fruit.get('cherry', 99))
99