Answers for "how to get the column names of a dataframe in python"

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
0

name columns pandas

>gapminder.columns = ['country','year','population',
                     'continent','life_exp','gdp_per_cap']
Posted by: Guest on June-08-2020

Code answers related to "how to get the column names of a dataframe in python"

Python Answers by Framework

Browse Popular Code Answers by Language