python convert list to dict with index

55

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}

Comments

Submit
0 Comments