I have a folder which contain files like
dm.csv
ae.csv
ex.csv
I want to read all file in one go without specifying file name into pandas with dataframe name as dm, ae, ex respectively.
I have tried different methods like use libraries
dask.dataframe.read_csv
glob.glob
os.listdir
every method indicating concat of all dtaframes but i want individually
globandlist.