The get and setdefault methods are important to know, they should be in any Python programmer's toolbox.
Another important way of doing this is to use collections.defaultdict, because then you can define your "default" in a single place without having to scatter it throughout your code wherever the dictionary is used, i.e. Don't Repeat Yourself. Then if you change the default you don't need to hunt through your code finding all those gets and setdefaults. For example
>>> import collections
>>> myDict = collections.defaultdict
>>> myDict = collections.defaultdict(lambda : 1024)
>>> myDict[0] += 1
>>> print myDict[0], myDict[100]
1025 1024
Because you get to set the function call, you can do whatever you like for your default value. How about assigning a random value between 1 and 10 for every new key?
>>> import collections
>>> import random
>>> myDict = collections.defaultdict(lambda : random.randint(1,10))
>>> print myDict[0], myDict[100]
1 5
>>> print myDict[0], myDict[100], myDict[2]
1 5 6
OK, that example's a little contrived, but I'm sure you can think of better uses. Say you have an expensive class to construct - the instance is only created if the key is not actually present, unlike when calling get and setdefault, e.g.
>>> class ExpensiveClass(object):
>>> numObjects = 0
>>> def __init__(self):
>>> ExpensiveClass.numObjects += 1
>>>
>>> print ExpensiveClass.numObjects
0
>>> x = {}
>>> x[0] = ExpensiveClass()
>>> print ExpensiveClass.numObjects
1
>>> print x.get(0, ExpensiveClass())
<__main__.ExpensiveClass object at 0x025665B0>
>>> print ExpensiveClass.numObjects
2
>>> ExpensiveClass.numObjects = 0
>>> z = collections.defaultdict(ExpensiveClass)
>>> print ExpensiveClass.numObjects
0
>>> print z[0]
>>> <__main__.ExpensiveClass object at 0x02566510>
>>> print ExpensiveClass.numObjects
1
Note that the call to x.get constructs a new ExpensiveClass instance, even though we don't ever use that instance because x[0] already exists. This could cause problems if you were indeed trying to count the number of ExpensiveClass objects, or if they were very slow to create. These problems don't occur for collections.defaultdict.
None,(),[],'',{},0, and0.0are consideredFalseif used in a logical expression -- what some have called their intrinsic "truthiness". – martineau Jun 1 '11 at 0:32