pandas option display all columns 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: if there are 100 columns how to display all columns
pd.set_option('display.max_columns', None)movies.head()