# reordering of the columns using reindex() rslt_df = df.reindex(columns= ['Name', 'Age','Gender' ,'College','Course','Branch' ]) # print the pandas DataFrame print("\nDataframe after Re-ordering of columns :\n", rslt_df) Output : Given Dataframe : Name Gender Age Course Branch...