pandas rowmax code example
Example 1: get max value column pandas
max_value_column = df["column_name"].max()
Example 2: maximun row and columns in python
print (pd.options.display.max_columns) # <--- this will display your limit
pd.options.display.max_columns = 500 # this will set limit of columns to 500