show more columns pandas dataframe code example
Example 1: pd.set_option('display.max_columns', None)
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)
#used for expanding the no o viible columns of dataframe
Example 2: pandas print all columns
# This will print all columns and rows
# 'display.max_colwidth', -1 will print entire row content
pd.set_option("display.max_rows", None, "display.max_columns", None,'display.max_colwidth', -1)