Unnamed: 0을 DataFrame에서 삭제하는 방법 1. index_col=0
df1 = pd.reda_csv(url, index_col=0)
df2 = df2.drop(df2.columns[0], axis=1)
#원본 데이터에 지정하지 않아도 원본 데이터프레임에 바로 반영 df3.drop(['Unnamed: 0'],axis=1, inplace =True)
링크텍스트