pandas读取excel文档,每列标题及标题下的内容,总行数,总列数
pandas读取excel文档,每列标题及标题下的内容,总行数,总列数import pandas''''''# file_path为excel的文件路径def read_excel(file_path): # 读取excel df=pandas.read_excel(file_path) # len出excel的总行数 line_count=len(df) # len出e...