1pd.set_option('display.max_columns', None)
2pd.set_option('display.max_rows', None)
3#used for expanding the no o viible columns of dataframe
1import pandas as pd
2pd.set_option('display.max_rows', 500)
3pd.set_option('display.max_columns', 500)
4pd.set_option('display.width', 1000)
5