import pandas as pd
xlsPath = r"C:\Users\유저이름\Desktop\\"
xlsFile = r"과일.xls"
df = pd.concat(pd.read_excel(xlsPath+xlsFile,sheet_name=None),ignore_index=True)
df.to_excel(xlsPath + '통합과일.xls', index=False, sheet_name='통합')
'컴퓨터 > Python' 카테고리의 다른 글
엑셀 확장자 xls python xlrd (0) | 2020.09.23 |
---|---|
python selenium internet explorer webdriver (0) | 2020.09.03 |
pandas 엑셀파일 xls xlsx 모두 합치기 (0) | 2020.03.05 |
파이썬 엑셀 xls 파일을 xlsx 파일로 변환하기 (0) | 2020.03.05 |
python openpyxl 엑셀 xlsx파일 (0) | 2020.03.03 |