wre write column names of dataframe code example
Example 1: how to add column headers in pandas
#suppose team is a df that has unnamed columns (0,1...)
team.columns =['Name', 'Code', 'Age', 'Weight']
Example 2: how to get column names having numeric value in pandas
cols = df.select_dtypes([np.number]).columns