[python][pandas] excel 批量转 csv 格式

该博客介绍了如何使用Python进行批量处理,将指定目录下的所有Excel文件(.xlsx和.xls)转换为CSV格式。主要涉及os模块用于文件路径操作,pandas库用于读取和写入数据,通过遍历目录、读取Excel文件并将其内容写入CSV文件,实现了自动化转换。
摘要由CSDN通过智能技术生成
import pandas as pd

import os

# 读取一个目录里面的所有文件:

def read_path(path):
    dirs = os.listdir(path)
    return dirs

def getpath(dir):
    # pwd = os.getcwd()
    # father_path=os.path.abspath(os.path.dirname(pwd)+os.path.sep+".")

    file_path = 'C:/meng_F/python_study'
    full_path=file_path+'/'+dir+'/'

    return full_path

#数据源Excel如果有多个sheet,那么则需要一一遍历输出

def xlsdata_to_csv(xlsx_data,tag_path):
    if not xlsx_data.empty:
        xlsx_data.to_csv('test.csv', encoding='utf_8_sig')

def get_excel_file(dir_path):
    file_list = []
    for root, dirs, files in os.walk(dir_path):
        for file in files:
            if file.endswith("xlsx") or file.endswith("xls"):
                file_list.append(os.path.join(root, file))
    return file_list

def main():
    source_path = getpath('excel_to_csv')
    tag_path = getpath('excel_to_csv')
    excel_files_list = get_excel_file(source_path)

    for file in  excel_files_list:
        print(file)
        xlsx_data = pd.read_excel(file, sheet_name='info')
        print(xlsx_data)
        xlsdata_to_csv(xlsx_data,tag_path)

if __name__ == '__main__':
    main()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值