I\'m trying to create a csv with pandas, but when I export the data to csv it gives me an extra column
csv
What you are seeing is the index column. Just set index=False:
index=False
df_csv = df0_fa.to_csv('revenue/data/test.csv',mode = 'w', index=False)