Imprima todos os elementos do dicionário, exceto um em Python

[v for k,v in d.iteritems() if k not in (2,5)]

# @Zenonymous
Zenonymous