Answers for "python convert list into dict with items as key"

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
1

convert list to dictionary using python

# Python3 program to Convert a
# list to dictionary
 
def Convert(lst):
    res_dct = {lst[i]: lst[i + 1] for i in range(0, len(lst), 2)}
    return res_dct
         
# Driver code
lst = ['a', 1, 'b', 2, 'c', 3]
print(Convert(lst))
Posted by: Guest on May-25-2021

Code answers related to "python convert list into dict with items as key"

Python Answers by Framework

Browse Popular Code Answers by Language