📌  相关文章
📜  将具有多个工作表的多个 excel 文件合并到一个数据框中 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:09.497000             🧑  作者: Mango

代码示例3
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')