0
I have a dictionary in Python:
dict = {0:[['tela1'],['tela2'],['tela3']], 1:[['tela2']], 2:[['tela5'],['tela7']], 4:[['tela1'],['tela3']]}
and would like to transform into a dataframe as follows:
Id | Values |
---|---|
0 | tela1 |
0 | tela2 |
0 | tela3 |
1 | tela2 |
2 | tela5 |
2 | tela7 |
4 | tela1 |
4 | tela3 |
Put what you tried to do into the question. Hug!
– lmonferrari