Zum Beispiel gibt es so ein Wörterbuch:
{
'data__key_hello': "world",
'data__key_bar': "foo",
'data__a': "b",
'b': 'c',
}
Nach der Umwandlung wird daraus
{
'data': {
'key': {
'hello': 'world',
'bar': 'foo'
},
'a': 'b',
},
'b': 'c'
}
Es wird durch einen Unterstrich getrennt
凑合着用吧