如何转换dictionary
为下面的“所需输出”?
我有dictionary
一个嵌套列表作为值:
dictionary = {'Person1': ['a', 1, 'b', 2], 'Person2': ['c', 3, 'd', 4]} #(the dict is longer than this, this is just an example)
期望的输出:
姓名 | 信 | 价值 |
---|---|---|
'人 1' | '一个' | 1 |
'人 1' | 'b' | 2 |
'人2' | 'C' | 3 |
'人2' | 'd' | 4 |
当前代码:
import pandas as pd
df = pd.DataFrame.from_dict(dictionary)