Exemplo n.º 1
0
def dictfilter(func, d):
    return dict(filter(lift(func), iteritems(d)))
Exemplo n.º 2
0
def dictmap(func, d):
    return dict(map(lift(func), iteritems(d)))