listes Python Dict Ffrom

keys = ["A", "B", "C"]
values = [1, 2, 3]
dictionary = dict(zip(keys, values))
Innocent Iguana