sort a dataframe by a column value code example
Example 1: dataframe, sort by columns
final_df = df.sort_values(by=['2'], ascending=False)
Example 2: how to sort the dataframe in python
import pandas as pd
df1=pd.read_csv("registration.csv")
df2=pd.read_csv("payment.csv")
df=pd.merge(df1,df2)
print(df.iloc[:,[0,1,3,4]].to_string(index=False))