Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to get, from:

keys = [1,2,3,4]

this:

{1: None, 2: None, 3: None}

A pythonic way of doing it?

This is an ugly one:

>>> keys = [1,2,3]
>>> dict([(1,2)])
{1: 2}
>>> dict(zip(keys, [None]*len(keys)))
{1: None, 2: None, 3: None}
share|improve this question

4 Answers

up vote 47 down vote accepted

dict.fromkeys([1, 2, 3, 4])

This is actually a classmethod, so it works for dict-subclasses (like collections.defaultdict) as well. The optional second argument specifies the value to use for the keys (defaults to None.)

share|improve this answer
1  
+1: And I learned something new. :) – Mark Byers Feb 11 '10 at 2:46
dict.fromkeys(keys, None)
share|improve this answer

nobody cared to give a dict-comprehension solution ?

>>> keys = [1,2,3,5,6,7]
>>> {key: None for key in keys}
{1: None, 2: None, 3: None, 5: None, 6: None, 7: None}
share|improve this answer
1  
This only works in Python 3.x – Juanjo Conti Feb 11 '10 at 14:10
I believe it was backported to 2.7 – wim Feb 16 '12 at 5:55
d = {}
for i in list:
    d[i] = None
share|improve this answer

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.