add column header pandas 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: pandas heading
pd.read_csv("directory", heading = None)