摘要:
import pandas as pdclass Excel2mysql(object):def get_dataframe_list(self,file_name): ''' 读取excle文件,将dataframe格式转换为特殊List :param file_name:文件路径 :return 阅读全文
摘要:
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] == ' 阅读全文