Add to_dictionary

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-04-13 19:30:29 +03:00
parent ecc35f200b
commit 2e9de879b6

18
snippets/to_dictionary.md Normal file
View File

@ -0,0 +1,18 @@
---
title: to_dictionary
tags: 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 a list comprehension to combine the values of the two lists, based on their positions.
```py
def to_dictionary(keys, values):
return {key:value for key, value in zip(keys, values)}
```
```py
to_dictionary(['a', 'b'], [1, 2]) # { a: 1, b: 2 }
```