Answers for "turn a list into dict python with id being thwe key"

3

create dictionary key and values from lists

keys = ['a', 'b', 'c']
values = [1, 2, 3]
dictionary = dict(zip(keys, values))
print(dictionary) # {'a': 1, 'b': 2, 'c': 3}
Posted by: Guest on September-14-2021
1

python convert list to dict with index

>>> lst = ['A','B','C']
>>> {k: v for v, k in enumerate(lst)}
{'A': 0, 'C': 2, 'B': 1}
Posted by: Guest on April-26-2021

Code answers related to "turn a list into dict python with id being thwe key"

Python Answers by Framework

Browse Popular Code Answers by Language