concat = pd.concat([data_1, data_2])
above code works on multiple CSVs but it duplicates the column tried reset_index and axis=0 but no good.
all CSVs have 21 columns but the code gives me 42 columns after concat
Any suggestions, ideas, comments are much appreciated.
Thanks