What is the purpose of the get method in a dictionary? word = 'brontosaurus' d = dict() for c in word: d[c] = d.get(c, 0) + 1 print(d)