# 导入filedialog 文件对话框模块 from tkinter import filedialog # 导入pandas库 import pandas as pd # 导入excel处理模块xlrd import xlrd # 创建list数据类型 列表 import csv sheet_names = [] list_c = []
# 打开路径文件并将文件路径赋值在path path = filedialog.askopenfilename()
print("path:"+path)
# 打开excel文件 first_file_fh = xlrd.open_workbook(path)
# 获取sheet sheet = first_file_fh.sheet_by_index(0)
print(sheet.col_values(0))
list_c = sheet.col_values(0)
df = pd.read_excel(path) print(list_c) # 循环工作簿所有行 示例文件第一列列名 为账户名称 for row in list_c: ??? df2 = df[df['账户名称'] == row]
??? # 根据列的内容进行筛选 ??? df2.to_csv('E:/zdhcl/jg3/' + row + '.csv', encoding='gb18030', index=None)
|