📌  相关文章
📜  如何使用 python 或 pandas 将多个 excel 文件合并到一个文件中 - Python 代码示例

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

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