pandas print head with 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: python head function show all columns
with pd.option_context('display.max_rows', 2, 'display.max_columns', 85):
print (df)