pandas find min and max of column code example
Example 1: get max value column pandas
max_value_column = df["column_name"].max()
Example 2: find min and max from dataframe column
max_value = column.max()
max_value_column = df["column_name"].max()
max_value = column.max()