Polars中导入excel文件Polars中导入excel文件1、直接导入def pddaoru_sheetname(filedir): #df1 = pd.read_excel(filedir,sheet_name=name) # polars导入excel文件命令 df = pl.read_excel(filedir) # polars导入excel文件命令 pf = df.to_pandas() # polars导入excel文件命令 #pf = df1.iloc[4:] # polars导入excel文件命令 kkk=pf.c