how to find the max out of three values for a pandas column 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