pandas get column names code example

Example 1: 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)

Example 2: pd dataframe get column names

lst = data.columns.values     # data is dataframe

Example 3: how to find columns of a dataframe

list(my_dataframe.columns.values)

Example 4: python select columns names from dataframe

# Import pandas package  
import pandas as pd  
    
# making data frame  
data = pd.read_csv("nba.csv")  
  
# iterating the columns 
for col in data.columns: 
    print(col)

Example 5: pandas dataframe column names

print(data.columns.values)

Example 6: print columns pandas

df = pd.DataFrame(exam_data , index=labels)

# print the columns labeled "name" and "score"
print(df[['name', 'score']])