Check if a given key already exists in a dictionary
Asked 07 September, 2021
Viewed 503 times
  • 58
Votes

I wanted to test if a key exists in a dictionary before updating the value for the key. I wrote the following code:

if 'key1' in dict.keys():
  print "blah"
else:
  print "boo"

I think this is not the best way to accomplish this task. Is there a better way to test for a key in the dictionary?

16 Answer