Answers for "attributes of a DataFrame return a list of column names of this DataFrame"

12

python return column names of pandas dataframe

# Basic syntax:
your_dataframe.columns

# Note, if you want the column names as a list, just do:
list(your_dataframe.columns)
Posted by: Guest on October-30-2020
7

pd dataframe get column names

lst = data.columns.values     # data is dataframe
Posted by: Guest on April-27-2020

Code answers related to "attributes of a DataFrame return a list of column names of this DataFrame"

Python Answers by Framework

Browse Popular Code Answers by Language