Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

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)
Comment

print specific key in dictionary python

>>> print(fruit.get('cherry', 99))
99
Comment

PREVIOUS NEXT
Code Example
Python :: python numpy array subtract 
Python :: escape brackets in regex python 
Python :: check if variable is none 
Python :: python request body json 
Python :: import user model 
Python :: python recursion example 
Python :: Python | Creating a Pandas dataframe column based on a given condition 
Python :: how to pass multiple parameters by 1 arguments in python 
Python :: python code for internet radio stream 
Python :: python loop to a tuple 
Python :: python MAX_INT 
Python :: qr detector 
Python :: alphabet 
Python :: python list with several same values 
Python :: what is * in argument list in python 
Python :: how to overlap two barplots in seaborn 
Python :: Subtract different times in Python 
Python :: traversal tree in python 
Python :: take columns to rows in pandas 
Python :: api testing python 
Python :: python get file ending 
Python :: giving number of letter in python 
Python :: get the first item in a list in python 3 
Python :: comments in python 
Python :: datetime convert python 
Python :: python floor float 
Python :: cosine similarity numpy 
Python :: python how to vectorize a function 
Python :: convert mixed number string to float 
Python :: python language 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =