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.

I have two lists

a: a, b, c, d, e
b: blue, white, brown, yellow, red

I need a to become blue's key in a dictonary, so i need to do this:

dictonary[a]="blue"

but how do I do it using the same for...

share|improve this question
how about a simple loop? it's not an elegant solution, but it works... – Karoly Horvath Aug 22 '12 at 20:45

2 Answers

up vote 13 down vote accepted

Use zip() to merge a and b:

dict(zip(a, b))

Because the dict() constructor also can take a sequence of (key, value) pairs no for loops are needed at all.

share|improve this answer

If you actually want to loop over the lists concurrently, you can loop over indices:

dictionary = {}
for i in range(min(len(a), len(b))):
    dictionary[a[i]] = b[i]

If you just want to achieve the result described, it is better to do what Martijn Pieters said and use dict(zip(a, b))

share|improve this answer
.. or use min(len(a), len(b)) – Karoly Horvath Aug 22 '12 at 21:00

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.