with pd.ExcelWriter('hello_world.xlsx') as writer:
df.to_excel(writer, sheet_name='a', encoding="UTF-8")
df.to_excel(writer, sheet_name='b', encoding="UTF-8")
- df.columns.names 로 multi column index 만든경우
- index=False 지원안함
- 다중 컬럼 인덱스 사용시 Column Head 밑에 빈 줄이 자동 생성되므로 주의할 것
'Programming > Python' 카테고리의 다른 글
파이썬 설치 (0) | 2021.03.18 |
---|---|
파이썬 re.sub 사용 시 대괄호 내부 특수문자 (0) | 2021.02.14 |