How to show all of columns name on pandas dataframe?

后端 未结 13 2174
既然无缘
既然无缘 2020-12-07 08:24

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

13条回答
  •  时光说笑
    2020-12-07 08:56

    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.

提交回复
热议问题