Python - noweaver/odds-and-ends GitHub Wiki

엑셀(xlsx) 파일 CSV 파일로

import pandas as pd

data_xls = pd.read_excel("/source_directory/a.xlsx", "sheet_name", index_col=None)
data_xls.to_csv("/target_directory/b.csv", encoding="utf-8", index=False,)