up vote 2 down vote favorite
3
share [g+] share [fb]

Newbie to Python, so this may seem silly.

I have two dict:

default = {'a': 'alpha', 'b': 'beta', 'g': 'Gamma'}
user = {'a': 'NewAlpha', 'b': None}

I need to update my defaults with the values that exist in user. But only for those that have a value not equal to None. So I need to get back a new dict:

result = {'a': 'NewAlpha', 'b': 'beta', 'g': 'Gamma'}
link|improve this question

73% accept rate
feedback

2 Answers

up vote 6 down vote accepted
result = default.copy()
result.update((k, v) for k, v in user.iteritems() if v is not None)
link|improve this answer
And in Python 3, use user.items() – Ayman Aug 26 '09 at 11:27
feedback

With the update() method, and some generator expression:

D.update((k, v) for k, v in user.iteritems() if v is not None)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.