I have a nested dictionary like
{  'A' : { 100 : [ 'apple' , 'mango'] , 
            98 : [ 'banana', 'grapes'], 
           101 : [ 'melon', 'peach'] }  , 
  'Bb' : {  16 : [ 'a' , 'm'] , 
            67 : [ 'b', 's'], 
             0 : [ 'm', 'p'] } }
I want the dictionary to be arranged according to the numbers..like 98 , 100 and 101 in ascended order.
 
     
    