Parameter ke konstruktor defaultdict adalah fungsi yang akan dipanggil untuk membangun elemen baru. Jadi mari kita gunakan lambda!
>>> from collections import defaultdict
>>> d = defaultdict(lambda : defaultdict(int))
>>> print d[0]
defaultdict(<type 'int'>, {})
>>> print d[0]["x"]
0
Sejak Python 2.7, ada solusi yang lebih baik lagi menggunakan Counter :
>>> from collections import Counter
>>> c = Counter()
>>> c["goodbye"]+=1
>>> c["and thank you"]=42
>>> c["for the fish"]-=5
>>> c
Counter({'and thank you': 42, 'goodbye': 1, 'for the fish': -5})
Beberapa fitur bonus
>>> c.most_common()[:2]
[('and thank you', 42), ('goodbye', 1)]
Untuk informasi lebih lanjut lihat PyMOTW - Koleksi - tipe data wadah dan Dokumentasi Python - koleksi