Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

given:

template = {'a': 'b', 'c': 'd'}
add = ['e', 'f']
k = 'z'

I want to use list comprehension to generate

[{'a': 'b', 'c': 'd', 'z': 'e'},
 {'a': 'b', 'c': 'd', 'z': 'f'}]

I know I can do this:

out = []
for v in add:
  t = template.copy()
  t[k] = v
  out.append(t)

but it is a little verbose and has no advantage over what I'm trying to replace.

This slightly more general question on merging dictionaries is somewhat related but more or less says don't.

share|improve this question

1 Answer

up vote 7 down vote accepted
[dict(template,z=value) for value in add]

or (to use k):

[dict(template,**{k:value}) for value in add]
share|improve this answer
@Prelude: Oops, yes. Thanks! – unutbu Jul 7 '10 at 17:42
BTW: what's the **? Link? – BCS Jul 7 '10 at 17:43
the ** is for use the dictionary as keyword arguments docs.python.org/tutorial/… – Xavier Combelle Jul 7 '10 at 17:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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