How To Combine Number Of Excel Files Into A Single

[Solved] How To Combine Number Of Excel Files Into A Single | Excel - Code Explorer | yomemimo.com
Question : how to combine number of excel files into a single file using python or pandas

Answered by : super-stoat-yvukq1n0e4w8

import os
import pandas as pd
cwd = os.path.abspath('')
files = os.listdir(cwd)
df = pd.DataFrame()
for file in files: if file.endswith('.xlsx'): df = df.append(pd.read_excel(file), ignore_index=True)
df.head()
df.to_excel('total_sales.xlsx')

Source : https://pythoninoffice.com/use-python-to-combine-multiple-excel-files/ | Last Update : Tue, 07 Jul 20

Answers related to how to combine number of excel files into a single file using python or pandas

Code Explorer Popular Question For Excel