get column of df without title 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: how to get column names having numeric value in pandas
cols = df.select_dtypes([np.number]).columns