Answers for "print specific key in dictionary python"

0

print specific key in dictionary python

>>> print(fruit.get('kiwi'))
2.0
Posted by: Guest on March-15-2021
0

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)
Posted by: Guest on June-05-2021
0

print specific key in dictionary python

>>> print(fruit.get('cherry', 99))
99
Posted by: Guest on June-05-2021

Code answers related to "print specific key in dictionary python"

Python Answers by Framework

Browse Popular Code Answers by Language