Files
30-seconds-of-code/snippets/to_dictionary.md
Isabelle Viktoria Maciohsek bff03eb7f4 Update snippet descriptions
2020-11-02 19:28:35 +02:00

515 B

title, tags
title tags
to_dictionary list,dictionary,intermediate

Combines two lists into a dictionary, where the elements of the first one serve as the keys and the elements of the second one serve as the values. The values of the first list need to be unique and hashable.

  • Use zip() in combination with dict() to combine the values of the two lists into a dictionary.
def to_dictionary(keys, values):
  return dict(zip(keys, values))
to_dictionary(['a', 'b'], [1, 2]) # { a: 1, b: 2 }