print specific key in dictionary python code example
Example 1: print specific key in dictionary python
>>> print(fruit.get('cherry', 99))
99
Example 2: print specific key in dictionary python
>>> print(fruit.get('kiwi'))
2.0
Example 3: print specific key in dictionary python
fruit = {
"banana": 1.00,
"apple": 1.53,
"kiwi": 2.00,
"avocado": 3.23,
"mango": 2.33,
"pineapple": 1.44,
"strawberries": 1.95,
"melon": 2.34,
"grapes": 0.98
}
for key,value in fruit.items():
print(value)