Answers for "how to make a dictionary of indices and lists python"

0

how to make a dictionary of indices and lists python

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

Code answers related to "how to make a dictionary of indices and lists python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language