Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to rewrite Python's dictionary access mechanism "getitem" to be able to return default values.

The functionality I am looking for is something like

a = dict()
a.setdefault_value(None)
print a[100] #this would return none

any hints ?

Thanks

share|improve this question
1  
Another possibility is to use a.get(100, None) – UncleZeiv Jan 4 '11 at 18:28
yes, I know that one thanks. But it is just ugly to have that all over my code. – webDevelSouth Jan 4 '11 at 18:31
Do you want it to set the missing key to None, or simply return None instead of raising a KeyError? – kevpie Jan 4 '11 at 18:31

5 Answers

up vote 9 down vote accepted

There is already a collections.defaultdict:

from collections import defaultdict

a = defaultdict(lambda:None)
print a[100]
share|improve this answer
Your lambda should be lambda: None, otherwise you get TypeError: <lambda>() takes exactly 1 argument (0 given). – Steven Rumbalski Jan 4 '11 at 18:32
@bukzor, Steven: You are right, I probably fixed it while you were typing. – Jochen Ritzel Jan 4 '11 at 18:34

There is a defaultdict built-in starting with Python 2.6. The constructor takes a function which will be called when a value is not found. This gives more flexibility than simply returning None.

from collections import defaultdict

a = defaultdict(lambda: None)
print a[100] #gives None

The lambda is just a quick way to define a one-line function with no name. This code is equivalent:

def nonegetter():
    return None

a = defaultdict(nonegetter)
print a[100] #gives None

This is a very useful pattern which gives you a hash showing the count of each unique object. Using a normal dict, you would need special cases to avoid KeyError.

counts = defaultdict(int)
for obj in mylist:
   counts[obj] += 1
share|improve this answer
and how could I avoid using defaultdict ?? – webDevelSouth Jan 4 '11 at 18:32
@webDevelSouth: Why would you want to avoid using defaultdict? – Steven Rumbalski Jan 4 '11 at 18:35
I'm guessing he's using this as a stepping stone into python OOP. I've put this in a separate answer. – bukzor Jan 4 '11 at 18:39

use a defaultdict (http://docs.python.org/library/collections.html#collections.defaultdict)

import collections
a = collections.defaultdict(lambda:None)

where the argument to the defaultdict constructor is a function which returns the default value.

Note that if you access an unset entry, it actually sets it to the default:

>>> print a[100]
None
>>> a
defaultdict(<function <lambda> at 0x38faf0>, {100: None})
share|improve this answer

If you really want to not use the defaultdict builtin, you need to define your own subclass of dict, like so:

class MyDefaultDict(dict):
    def setdefault_value(self, default):
        self.__default = default
    def __getitem__(self, key):
        try:
            return self[key]
        except IndexError:
            return self.__default
share|improve this answer
and I guess I could do import MyclassDefaultDict as dict at the top of the script and then I could MyclassDefaultDict as "dict" - am I right ?? – webDevelSouth Jan 4 '11 at 18:43
4  
Well, you could, but shouldn't. For one thing, it still won't make it happen for dicts that you defined using curly braces. {"foo": 1} is still a Python dict even if you have redefined dict to be some other class. For another, if whoever maintains your code (including yourself in six months) sees dict they're going to assume it's the regular Python dict type. – kindall Jan 4 '11 at 18:49

i wasnt aware of defaultdict, and thats probably the best way to go. if you are opposed for some reason ive written small wrapper function for this purpose in the past. Has slightly different functionality that may or may not be better for you.

def makeDictGet(d, defaultVal):
    return lambda key: d[key] if key in dict else defaultVal

And using it...

>>> d1 = {'a':1,'b':2}
>>> d1Get = makeDictGet(d1, 0)
>>> d1Get('a')
1
>>> d1Get(5)
0
>>> d1['newAddition'] = 'justAddedThisOne'    #changing dict after the fact is fine
>>> d1Get('newAddition')
'justAddedThisOne'
>>> del d1['a']
>>> d1Get('a')
0
>>> d1GetDefaultNone = makeDictGet(d1, None)   #having more than one such function is fine
>>> print d1GetDefaultNone('notpresent')
None
>>> d1Get('notpresent')
0
>>> f = makeDictGet({'k1':'val1','pi':3.14,'e':2.718},False) #just put new dict as arg if youre ok with being unable to change it or access directly
>>> f('e')
2.718
>>> f('bad')
False
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.