Skip to content
Advertisement

Remove leading comma in header when using pandas to_csv

By default to_csv writes a CSV like

JavaScript

But I want it to write like this:

JavaScript

How do I achieve this? I can’t set index=False because I want to preserve the index. I just want to remove the leading comma.

JavaScript

Advertisement

Answer

It is possible by write only columns without index first and then data without header in append mode:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement