trying to understand what is going on here with a python dictionary. I am trying to return a list of the items using dic.values(). However, I can't figure out the order that items are supposed to be returned in.
For example:
dic = {'a':10, 'b':9, 'c':11, 'd':12}
>>> dic.values()
[10, 11, 9, 12]
Returns not one of the logical options of sorting by keys or sorting by items, but something else entirely