PANDAS TO_CSV menambahkan kolom yang tidak disebutkan namanya

# set index to false so that to_csv does not add unnamed column
df.to_csv(index=False)
Dizzy Dingo