Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

check if a given key already exists in a dictionary

d = {'a': 1, 'b': 2}
'a' in d # <== evaluates to True
'c' in d # <== evaluates to False
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #key #exists #dictionary
ADD COMMENT
Topic
Name
9+9 =