list1 = ['AMZN', 'CACC', 'EQIX', 'GOOG', 'ORLY', 'ULTA']
list2 = [[12.81, 11.09, 12.11, 10.93, 9.83, 8.14], [10.34, 10.56, 10.14, 12.17, 13.10,11.22], [12.81, 11.09, 12.11, 10.93, 9.83, 8.14]]
m = [sum(i) for i in zip(*list2)]
culo = []
for ss in m:
culo.append(ss/3)
zip_iterator = zip(list1, culo)
a_dictionary = dict(zip_iterator)
print(a_dictionary)
Hello everyone, do you have any clue how to order the dictionary "a_dictionary" in biggest number to the smallest from the value?