pd.set_option("max_rows", None) code example
Example 1: display Max rows in a pandas dataframe
pandas.set_option('display.max_rows', None)
Example 2: pd.set_option('display.max_columns' none)
import pandas as pd
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)