Hi!
Also folgendes Problem:
Ich möchte in Python ein Dictionary im Dictionary sortieren.
Beispiel:
dict = {'a' : { 'c' : 1, 'b' : 2 } }, 'd' : { 'f' : 3, 'e' : 4 } }
Das will ich jetzt so sortiert haben:
dict = {'a' : { 'b' : 2, 'c' : 1 } }, 'd' : { 'e' : 4, 'f' : 3 } }
Normales 'in die Liste Konvertieren + Sortieren' funktioniert nicht, da die values 'a' und 'd' sortiert werden, und nicht die innere Dict.
Da man eine dict an sich im eigentlichen Sinne nicht sortieren kann, kann die Ausgabe ruhig so aussehen:
listdict = [['a' ,('b' : 2), ('c' : 1)],['d' ,('e' : 4), ('f' : 3)] ]
thx