Skip to content Skip to sidebar Skip to footer

How Can I Stop Python's Csv.DictWriter.writerows From Adding Empty Lines Between Rows In Windows?

When I use Python's csv.DictWriter.writerows on Windows, empty newlines are added between rows. How do I stop that? The code works fine on Linux.

Solution 1:

  • In Python 2: Open the file in binary mode, always; csv.DictWriter() writes \r\n line endings:

    with open(filename, 'ab') as outputfile:
        writer = csv.DictWriter(outputfile, fieldnames)
    

    From the csv.writer() documentation:

    If csvfile is a file object, it must be opened with the ‘b’ flag on platforms where that makes a difference.

  • In Python 3: Open the file with newline='' so csv.DictWriter() can control the newlines written without translation:

    with open(filename, 'a', newline='') as outputfile:
        writer = csv.DictWriter(outputfile, fieldnames)
    

    Again, quoting the relevant csv.writer() documenation:

    If csvfile is a file object, it should be opened with newline=''

    [ ... ]

    If newline='' is not specified, newlines embedded inside quoted fields will not be interpreted correctly, and on platforms that use \r\n linendings on write an extra \r will be added. It should always be safe to specify newline='', since the csv module does its own (universal) newline handling.


Post a Comment for "How Can I Stop Python's Csv.DictWriter.writerows From Adding Empty Lines Between Rows In Windows?"