“Como salvar a segunda folha no Excel usando Python” Respostas de código

Como salvar a segunda folha no Excel usando Python

writer2 = pd.ExcelWriter('mult_sheets_2.xlsx')

df_1.to_excel(writer2, sheet_name = 'df_1', index = False)
df_2.to_excel(writer2, sheet_name = 'df_2', index = False)

writer2.save()
Condemned Cowfish

Como salvar a segunda folha no Excel usando Python

with pd.ExcelWriter('mult_sheets_1.xlsx') as writer1:
    df_1.to_excel(writer1, sheet_name = 'df_1', index = False)
    df_2.to_excel(writer1, sheet_name = 'df_2', index = False)
Condemned Cowfish

Como salvar a segunda folha no Excel usando Python

with pd.ExcelWriter('mult_sheets_1.xlsx') as writer1:
    df_1.to_excel(writer1, sheet_name = 'df_1', index = False)
    df_2.to_excel(writer1, sheet_name = 'df_2', index = False)
Condemned Cowfish

Como salvar a segunda folha no Excel usando Python

with pd.ExcelWriter('mult_sheets_1.xlsx') as writer1:
    df_1.to_excel(writer1, sheet_name = 'df_1', index = False)
    df_2.to_excel(writer1, sheet_name = 'df_2', index = False)
Condemned Cowfish

Respostas semelhantes a “Como salvar a segunda folha no Excel usando Python”

Perguntas semelhantes a “Como salvar a segunda folha no Excel usando Python”

Mais respostas relacionadas para “Como salvar a segunda folha no Excel usando Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código