Pandy to_csv dodaje nienazwaną kolumnę

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