writer=pd.ExcelWriter('test.xlsx') data1.to_excel(writer,sheet_name='sheet1') data2.to_excel(writer,sheet_name='sheet2') writer.save() 上面的方法会将原来的excel文件覆盖掉,假如想要对已经存在的excel文件进行修改,可以使用开源工具包(anaconda已附带)openpyxl importpandas as pd fromopenpyxlimportloa...
sheet少的话可以打开excel新建一个新的excel文件然后 复制sheet过去单独保存,但如果有几十个就比较麻烦。可以用pandas来3行代码搞定。 """importpandasaspd filename ='C:\\Users\\admin\\Desktop\\222222.xlsx'contents = pd.read_excel(filename, sheet_name=None)#sheet_name=None就会把所有的sheets读入内存fo...
Python pandas 读取和保存DataFrame到Excel中多个sheet的方法及示例代码
主要介绍了pandas将多个dataframe以多个sheet的形式保存到一个excel文件中,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 (0)踩踩(0) 所需:1积分 umContentCreator 2024-10-13 19:37:14 ...
pd writer = pd.ExcelWriter('test.xlsx') data1.to_excel(writer,sheet_name='sheet1') data2.to_excel(writer,sheet_name='sheet2') writer.save() 上面的方法会将原来的excel文件覆盖掉,假如想要对已经存在的excel文件进行修改,可以使用开源工具包(anaconda已附带)openpyxl import pandas as pd from open...
import pandas as pd writer = pd.ExcelWriter('test.xlsx') data1.to_excel(writer,sheet_name='sheet1') data2.to_excel(writer,sheet_name='sheet2') writer.save() 上面的方法会将原来的excel文件覆盖掉,假如想要对已经存在的excel文件进行修改,可以使用开源工具包(anaconda已附带)openpyxl ...
_excel(xlsx, sheet_name="name2", index=False)9print("保存完成")10#第二种11xlsx = pd.ExcelWriter(r"D:\test\test.xlsx")12df1.to_excel(xlsx, sheet_name="name1", index=False)13df2.to_excel(xlsx, sheet_name="name2", index=False)14print("保存完成")15xlsx.close()16#读取文件17...