I am in simple doubt... I created the following dictionary:
>>> alpha={\'a\': 10, \'b\': 5, \'c\': 11}
But, when I want to see the
Dictonaries are not guaranting sorting of keys. You can find this information in python docs: http://docs.python.org/tutorial/datastructures.html#dictionaries
You can always sort dictionary keys or use other, more specialized collection.
sort