Say I have 200 csv files, I want to read these csv files at one time, and store each csv file in different data frames like df1 for the first file and so on up to df200. Doing manual like df1=pd.read_csv
takes a lot of time up to 200. How do I do this using pandas?
I have tried using for loop, but unable to approach, stuck.