while i am getting 1 and second rows as column names i am getting Unnamed: 0_level_0 to in pandas dataframe code example
Example 1: pandas read csv unamed:o
pd.read_csv(file_name, index_col=0)
Example 2: get rid of unnamed column pandas
df.to_csv(path, index=False)