cara mencetak bagian tertentu dari kamus dalam python
>>> print(fruit.get('cherry', 99))
99
Light Lark
>>> print(fruit.get('cherry', 99))
99