HiveBrain v1.2.0
Get Started
← Back to all entries
snippetpythonTip

You should use dict.get(key) instead of dict[key]

Submitted by: @import:30-seconds-of-code··
0
Viewed 0 times
shoulddictinsteadyougetusepythonkey

Problem

A common debate among Python developers seems to stem from the retrieval of dictionary values, which can be accomplished using either dict[key] or dict.get(key).
Although you can achieve the same result using either one, dict.get() is usually preferred, as it accepts a second argument which acts as the default value shall the key not exist in the given dictionary. Due to this property, dict.get() will always return a value, whereas dict[key] will raise a KeyError if the given key is missing.

Solution

a = { 'max': 200 }
b = { 'min': 100, 'max': 250 }
c = { 'min': 50 }

a['min'] + b['min'] + c['min'] # throws KeyError
a.get('min', 0) + b.get('min', 0) + c.get('min', 0) # 150

Code Snippets

a = { 'max': 200 }
b = { 'min': 100, 'max': 250 }
c = { 'min': 50 }

a['min'] + b['min'] + c['min'] # throws KeyError
a.get('min', 0) + b.get('min', 0) + c.get('min', 0) # 150

Context

From 30-seconds-of-code: dict-getkey-vs-dictkey

Revisions (0)

No revisions yet.