How Do I sort a dict of dict in python??
I have a dictionary :
d =     {
       1: {2: 30, 3: 40, 4: 20, 6: 10},
       2: {3: 30, 4: 60, 5: -60}, 
       3: {1: -20, 5: 60, 6: 100}, 
       }
How can I get the sorted (reverse) dict based on their values ?? How can I get the output like:
d = {
           1: {3: 40, 2: 30, 4: 20, 6: 10},
           2: {4: 60, 3: 30, 5: -60}, 
           3: { 6: 100, 5: 60,1: -20}, 
  }
 
     
    