my_dict = {"one":1, "two":2, "three":3}
print(my_dict)
I'm a newbie. I'm told that dictionaries are unordered, yet the output is still in an order of one kind or another...it is reversed here.
Why, in an apparently unordered dictionary, is the output of the above code as follows?
{'three': 3, 'two': 2, 'one': 1}
If someone could explain I'd be most grateful.
Thanks.