摘要: import pandas as pdclass Excel2mysql(object):def get_dataframe_list(self,file_name): ''' 读取excle文件,将dataframe格式转换为特殊List :param file_name:文件路径 :return 阅读全文
posted @ 2021-08-03 16:37 python包包侠 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1 import os 2 3 def file_name(file_dir): 4 L=[] 5 for root, dirs, files in os.walk(file_dir): 6 for file in files: 7 if os.path.splitext(file)[1] == ' 阅读全文
posted @ 2021-08-03 16:27 python包包侠 阅读(262) 评论(0) 推荐(0) 编辑
1