【python Excel操作】1-批量读取统一文件夹下Excel中固定行列值,并合并到一张Excel中

-参考这位博主的代码原文链接
批量读取了统一文件夹下所有Excel的固定行列值,并合并写入一张Excel中

def to_one_excel(dir):
    dfs = []
    #for循环,遍历文件夹下所有Excel文件
    for root_dir, sub_dir, files in os.walk(dir)

你可能感兴趣的:(python-Excel,python,excel,开发语言)