I am trying to combine a set of lists into an organized dictionary. The existing lists are in the following format:
index = [1, 2]
keys = [key1, key2, key3]
values_k1 = [a, b, c]
values_k2 = [d, e, f]
I want to organize those lists into the following dictionary:
d = {'1': {'key1':'a','key2':'b','key3':'c'}, '2': {'key1':'d','key2':'e','key3','f'}}