I have a dataset in Excel and some columns are unnamed there: A_ColumnWithName, Unnamed1, Unnamed2, B_ColumnWithName, Unnamed3, Unnamed4
I need to set the names of the currently unnamed columns to the same as the 1st column name from the left, so my columns should look like this:
A_ColumnWithName, A_ColumnWithName, A_ColumnWithName, B_ColumnWithName, B_ColumnWithName, B_ColumnWithName
Any hints how can I do it using Python? An important thing is that there is tons of such columns that's why it's required to do so in the most automatic way possible.