how to get the max of each column in dataframe code example
Example 1: get max value column pandas
max_value_column = df["column_name"].max()
Example 2: Display max number of columns pandas
pd.options.display.max_columns = 999
pd.options.display.max_rows = 999