您可以直接传递dict并将
values属性访问到
concat:
In [233]:dOut[233]:{'df1': name color type 0 Apple Yellow Fruit, 'df2': name color type 0 Banana Red Fruit, 'df3': name color type 0 Chocolate Brown Sweet}In [234]:pd.concat(d.values(), ignore_index=True)Out[234]: name color type0 Banana Red Fruit1 Apple Yellow Fruit2 Chocolate Brown Sweet
假设您只是想连接所有df,如果要合并,则需要解释什么是合并标准
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)