dict_abc = {'A': [[1, 2, 3], [4, 5, 6], [7, 8, 9]],
'B': [[4, 4, 4], [2, 2, 3],],
'C': [[4, 6, 0]]
}
I would like to convert this to a dataframe in the form
| x | y | z |
A 1 2 3
A 4 5 6
A 7 8 9
B 4 4 4
B 2 2 3
C 4 6 0