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()
[python][pandas] excel 批量转 csv 格式
最新推荐文章于 2024-09-19 16:17:19 发布
该博客介绍了如何使用Python进行批量处理,将指定目录下的所有Excel文件(.xlsx和.xls)转换为CSV格式。主要涉及os模块用于文件路径操作,pandas库用于读取和写入数据,通过遍历目录、读取Excel文件并将其内容写入CSV文件,实现了自动化转换。
摘要由CSDN通过智能技术生成