my doubt is if it's possible order a list of element in python from strings in the index. for example
list = { }
list['b']='test1'
list['a']='test2'
list['c']='test3'
and i want to obtain this
list['a'] = 'test2'
list['b'] = 'test1'
list['c'] = 'test3'
Thanks in advance. Be patient but is my first day with python.