I am trying to assign new_df the dataframe but it says that new_df is not defined. is there a way that I can assign dataframe to the new_df variable using a function.
`def concat(file_xlsx, "sheet1", new_df): for f in file_xlsx: data=pd.read_excel(file_xlsx,"sheet1") new_df=pandas.Dataframe.append(data) return new_df`
Dataframethat will be passed into the function?