我想将数据从python导出到Excel电子表格(csv)。
我的数据看起来像this。
我的代码:
export_csv = Reference_all.to_csv('d:\\11221161\\Desktop\\sam\\fichiers\\donnees\\export_dataframe2.csv', index=False, header=True)
...这给了我this。
因此,它为我提供了所有数据,这些数据被放在一列中,这不是我想要的。
如何保持python下的格式? 谢谢!