I just doubt it ... I created the following dictionary:
>>> alpha={'a': 10, 'b': 5, 'c': 11}
But when I want to see the keys and values โโof the dictionary that I received:
>>> alpha
{'a': 10, 'c': 11, 'b': 5}
See that "b" and "c" are reversed. How can I make the position the same as when the dictionary was created?
source
share