vote up 6 vote down star
1

Is there a more concise way of doing this in Python?:

def toDict(keys, values):
  d = dict()
  for k,v in zip(keys, values):
    d[k] = v

  return d
flag

3 Answers

vote up 37 vote down check

Yes:

dict(zip(keys,values))
link|flag
That's pretty compact! Thanks! – guillermooo Feb 23 at 23:47
vote up 4 vote down

If keys' size may be larger then values' one then you could use itertools.izip_longest (Python 2.6) which allows to specify a default value for the rest of the keys:

from itertools import izip_longest

def to_dict(keys, values, default=None):
    return dict(izip_longest(keys, values, fillvalue=default))

Example:

>>> to_dict("abcdef", range(3), 10)
{'a': 0, 'c': 2, 'b': 1, 'e': 10, 'd': 10, 'f': 10}

NOTE: itertools.izip*() functions unlike the zip() function return iterators not lists.

link|flag
vote up 2 vote down

Along with the correct answers you've had so far for the technique, I'll point out that ‘to_dict’ is more Pythonic than ‘toDict’ when naming a function. See PEP 8 for the style recommendations for writing Python code.

link|flag
+1 for helping someone who is clearly interested 'the way.' – vgm64 Feb 24 at 3:28
Thanks for the heads-up. However, this would rather belong in a wikified question along the lines of "Python coding style guidelines". – guillermooo Feb 24 at 11:28

Your Answer

Get an OpenID
or

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