自学内容网 自学内容网

python 将数据保存到现有的Excel文件的新工作表

out_file = ‘query.xlsx’
df1 = pd.DataFrame(out_data)

若直接写入:
df1.to_excel(out_file, index=False, sheet_name=‘v5v7’)

# 将第二个DataFrame保存到现有的Excel文件的新工作表

with pd.ExcelWriter(out_file, engine=‘openpyxl’, mode=‘a’) as writer:
df1.to_excel(writer, sheet_name=‘v5v7’, index=False)

# # 将第二个DataFrame保存到现有的Excel文件的新工作表
with pd.ExcelWriter(out_file, engine='openpyxl', mode='a') as writer:
    df1.to_excel(writer, sheet_name='v5v7', index=False)

原文地址:https://blog.csdn.net/woomay/article/details/144454776

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!