I have a dataframe that consist of hundreds of columns, and I need to see all column names.
What I did:
In[37]: data_all2.columns
T
What worked for me was the following:
pd.options.display.max_seq_items = None
You can also set it to an integer larger than your number of columns.