# Changing the order of the columns in a specific way by reordering the list of column names
df_cols = df.columns.tolist()
# "Column to be moved" column is copied to position Nr 6 in the list of columns
df_cols.insert(6, df_cols.pop(df_cols.index("Column to be moved")))
# Reindexing the column names based on the modified list of columns
df = df.reindex(columns=df_cols)