Answers for "how to display column headings in pandas"

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
1

print columns pandas

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

# print the columns labeled "name" and "score"
print(df[['name', 'score']])
Posted by: Guest on August-10-2020
0

python pandas return column name of a specific column

# Basic syntax:
list(df.columns)[column_number]
# This returns the column name of the column of interest
Posted by: Guest on November-05-2020

Code answers related to "how to display column headings in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language