Comment récupérer les valeurs du dictionnaire en python par index

a_dictionary = {"a": 1, "b": 2, "c":3}
keys_list = list(a_dictionary)
key = keys_list[0]
print(key)
Angry Alligator