I have a dictionary like this:
myDict = { 'BigMeadow2_U4': (1609.32, 22076.38, 3.98), 'MooseRun': (57813.48, 750187.72, 231.25), 'Hwy14_2': (991.31, 21536.80, 6.47) } How can I get the first value of each item in my dicitionary?
I want in the end a list:
myList = [1609.32,57813.48,991.31]
dictis unordered. This means that there is no ordering of the elements in the dictionary - you need to access the values by the keys that they are associated with. So please explain why the elements inmyListare ordered the way they are (first element of the values associated with keys in sorted order, perhaps?)