lista_0 = ['a', 'b', 'c', 'd', 'e', 'f'] lista_1 = [1, 1, 2, 3, 5, 8] res = dict(zip(lista_0, lista_1)) print(res)