cols = df.columns.tolist() # Rearrange the list any way you want cols = cols[-1:] + cols[:-1] df = df[cols]