I have write down this program in python
Create a dictionary
a = { 'a':'b', 'x':'x', '2':'2' }
After run loop
for c in a:
a[c]
result is
'2'
'b'
'x'
I expect, there should be "b x 2" result but it sort automatically, Why happen this and how can i control this?