I wonder how to change the names of columns which name has begin on "Unnamed:". Want to replace those columns with years from 1960 to 2019. Have you guys any idea how?

I wonder how to change the names of columns which name has begin on "Unnamed:". Want to replace those columns with years from 1960 to 2019. Have you guys any idea how?

You could loop over the columns and check if it needs to be renamed. This code assumes that they are in order of the year you want them.
year = 1960
for col in my_df.columns:
if col.startswith('Unnamed'):
my_df.rename(columns = {col :f'{year}'}, inplace = True)
year += 1