how to get the max of a column in pandas code example
Example 1: max columns in python
import pandas as pd
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)
Example 2: get max value column pandas
max_value_column = df["column_name"].max()