Convert Python dictionary of dictionary of dictionary to table
I am working on python panda. I have nested dictionaries as below. import pandas as pd data = { “block1”: { “text1”: { “key1”: “value1”, “key2”: “value2”, }, “text2”: { “key1”: “value3”, “key2”: “value4”, }, }, “block2”: { “text1”: { “key1”: “value5”, “key2”: “value6”, }, “text2”: { “key1”: “value7”, “key2”: “value8”, }, }, } df … Read more