So have just started dictionaries in Python (using Spyder if that helps)... basically made a dictionary called t, but the values don't get stored in the order i have assigned
t={'first':'a','second':'b','third':'c'}
print t
for i in t :
print t[i]
the values in t get stored as {'second': 'b', 'third': 'c', 'first': 'a'} and get assigned as such?! whats going on here?