Another idea is to use the builtin filter function:
filter
>>> d = {'a':1, 'b':2, 'c':3} >>> dict(filter(lambda x: x[0] != 'c', d.items())) {'a': 1, 'b': 2}