“Как сохранить второй лист в Excel с помощью Python” Ответ

Как сохранить второй лист в Excel с помощью 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

Как сохранить второй лист в Excel с помощью 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

Как сохранить второй лист в Excel с помощью 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

Как сохранить второй лист в Excel с помощью 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

Ответы похожие на “Как сохранить второй лист в Excel с помощью Python”

Вопросы похожие на “Как сохранить второй лист в Excel с помощью Python”

Больше похожих ответов на “Как сохранить второй лист в Excel с помощью Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования