How to show all of columns name on pandas dataframe?

后端 未结 13 2012
既然无缘
既然无缘 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:51

    To get all column name you can iterate over the data_all2.columns.

    columns = data_all2.columns
    for col in columns:
        print col
    

    You will get all column names. Or you can store all column names to another list variable and then print list.

提交回复
热议问题