I have this kind of dictionary
{100: {11: 0.01,
13: 0.21,
15: 0.5,
17: 0.54,
19: 0.6},
110:{11:0.5,
13:0.6,
15:0.8,
17:0.5
}
}
I want to make to convert it something like this
MainId,Id,Value
100,11,0.01
100,13,0.21
100,15,0.5
100,17,0.54
100,19,0.6
110,11,0.5
110,13,0.6
110,15,0.8
110,17,0.5
How do it do it ? Any suggestions