I have a list of csv files which I load as data frames using pd.read_csv()
I am currently trying to iterate through the list of csv and using the pd.concat()
method and setting the axis parameter to one to add all the dataframes together by columns.
It is working as hoped however I am encountering the issue that since all of the data frames have the same colums names when I concatenated them I get for example ten columns all with the key "Date"
is there anyway that I can give the colums all unique names example London_Date, Berlin_Date? obviously the names being based on the name of the data frames.