Reverse the column of the dataframe in pandas python can be done by using df.columns[::-1]. Let’s see how to
- Reverse the column of the dataframe in pandas
With examples
First let’s create a dataframe
import pandas as pd import numpy as np #Create a DataFrame df1 = { 'State':['Arizona AZ','Georgia GG','Newyork NY','Indiana IN','Florida FL'], 'Score':[62,47,55,74,31]} df1 = pd.DataFrame(df1,columns=['State','Score']) print(df1)
df1 will be
Reverse the column of the dataframe in pandas
df1.columns[::-1] reverses the columns of the dataframe by re arranging .
''' reverse the column in pandas python ''' df1[df1.columns[::-1]]
so the resultant dataframe will be