how to remove header when reading excel in data frame in python code example
Example 1: get rid of unnamed column pandas
df.to_csv(path, index=False)
Example 2: python delete header row
print df.shape[1] # Show dimension of thecolumns
print range(df.shape[1]) # Show range of the columns
df.columns = range(df.shape[1]) # Delete headers