I have a pandas dataframe like this:
Col1 Col2 Col3
1 1092 203 802
Is it possible to sort this dataframe and get a result like this:
Col1 Col3 Col2
1 1092 802 203
I tried sort_values but it doesn't work. My work around is df.T.sort_values(...)


