如何在Python Pandas中从多个字典对象中将值插入DataFrames

时间:2017-10-23 11:01:05

标签: python pandas dictionary dataframe

我有很多字典对象,比如

l= {'A':14,'B':45,'C':'ds'}
S= {'A':58,'B':78,'C':'rt'}  ..... so on

我想将多个词典的这些值合并到一个具有相同列名的 DataFrame 中。

1 个答案:

答案 0 :(得分:1)

最简单的是创建dict的列表并传递给DataFrame构造函数:

df = pd.DataFrame([l,S])
print (df)
    A   B   C
0  14  45  ds
1  58  78  rt