如何将字典输出到包含无类型值的数据框

时间:2019-04-11 22:53:56

标签: python json pandas dataframe dictionary

我有一个从JSON加载的字典,看起来像这样:

{'Exist': False, 'IDs': []}

我想将其生成到数据框。使用以下内容:

df = pd.DataFrame(mydict)

结果:

Empty DataFrame
Columns: [Exist, IDs]
Index: []

但是,我想实现以下目标:

Exist    IDs
False    None/nan/whatever/(empty)

如果列表为空,或者为“无”类型,我希望将其留空或表明它不是。.

这最终将被写入Excel报告中。

谢谢!

1 个答案:

答案 0 :(得分:1)

如何处理,因为您将其保存在excel中

pd.DataFrame(list({'Exist': False, 'IDs': []}.items())).T.to_excel('file.xlsx', header = False, index = False)