Comment faire un dictionnaire des indices et répertorie Python

>>> lst = ['A','B','C']
>>> {k: v for v, k in enumerate(lst)}
{'A': 0, 'C': 2, 'B': 1}
Nasty Narwhal