Hello, I'm trying to sort my dictionary, but I'm finding it difficult.
dict = {'EstacaoCodigo' : ['1','2','3'] ,'NivelConsistencia' : ['0','2','1'] ,'Data' : ['01/12/1996','01/12/1999','01/12/1994'] }
Would it be possible to sort the list values from the list of dates? The expected result is:
{'EstacaoCodigo' : ['2','1','3'] ,'NivelConsistencia' : ['2','0','1'] ,'Data' : ['01/12/1999','01/12/1996','01/12/1994'] }