Python Pandas Shift Last Column на первое место

cols = list(df.columns)
cols = [cols[-1]] + cols[:-1]
df = df[cols]
Kwams