Blank row getting inserted between each row of excel while using CSV writer in Python

I have recently started working on phyton and I just love it. And now I wonder why I didn’t get an opportunity to start earlier. So here it is. I was trying to write a CSV file. Below is the sample code for the same. import csv with open(’emissions.csv’, ‘w’, encoding=”utf-32″) as csvfile:     filewriter = …

Blank row getting inserted between each row of excel while using CSV writer in Python Read More »