1import pandas as pd
2pd.set_option('display.max_rows', 500)
3pd.set_option('display.max_columns', 500)
4pd.set_option('display.width', 1000)
5pd.set_option('max_colwidth', -1)
1pd.set_option('display.max_columns', 200)
2pd.set_option('display.max_rows', 100)
3pd.set_option('display.min_rows', 100)
4pd.set_option('display.expand_frame_repr', True)
5